-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.xml
1754 lines (1359 loc) · 90 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title></title>
<link>https://dev.seedstack.org/</link>
<description>Recent content on </description>
<generator>Hugo -- gohugo.io</generator>
<lastBuildDate>Fri, 23 Jul 2021 00:00:00 +0000</lastBuildDate>
<atom:link href="https://dev.seedstack.org/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>AWS Lambda</title>
<link>https://dev.seedstack.org/addons/aws/lambda/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/aws/lambda/</guid>
<description><p>This module supports the <a href="https://aws.amazon.com/lambda/details">AWS Lambda</a> server-less architecture.</p></description>
</item>
<item>
<title>Advanced CSV</title>
<link>https://dev.seedstack.org/addons/io/advanced-csv-export/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/io/advanced-csv-export/</guid>
<description><p>A CSV template is defined with a <code>*.csv.properties</code> file. This properties gives you options to change general
configuration, define format or provide custom validation.</p></description>
</item>
<item>
<title>Aggregate design</title>
<link>https://dev.seedstack.org/guides/ddd-for-beginners/aggregate-design/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/ddd-for-beginners/aggregate-design/</guid>
<description><p>Most business domains have very interconnected Entities, sometimes up to the point where there is always a path going
from any Entity to any other. We can try to minimize the number of associations in our design, and this is a good practice
but it can lead to a translation loss between business and software. In a typical object model, it is difficult to
clearly see the boundaries of a change. This is particularly acute in systems with concurrent access such as Web
applications.</p></description>
</item>
<item>
<title>Anemic Domain Model</title>
<link>https://dev.seedstack.org/guides/ddd-for-beginners/anemic-domain-model/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/ddd-for-beginners/anemic-domain-model/</guid>
<description><p>An Anemic Domain Model is something that can be found a lot of projects and, astonishingly, is often viewed as a good
practice. But as you may already have deduced from its name, it doesn&rsquo;t sound like something desirable and certainly not
in DDD-oriented software.</p></description>
</item>
<item>
<title>Batch monitoring</title>
<link>https://dev.seedstack.org/addons/monitoring/batch/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/monitoring/batch/</guid>
<description><p>You can use the monitoring add-on batch module to inspect execution results of Spring batch jobs, executions and
steps.</p></description>
</item>
<item>
<title>Behavior and services</title>
<link>https://dev.seedstack.org/guides/ddd-for-beginners/behavior-and-services/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/ddd-for-beginners/behavior-and-services/</guid>
<description><p>Sometimes behavior doesn&rsquo;t fit into Entities or Value Objects. Pure operations may exist in the domain and should therefore
be modeled as such. Domain-Driven-Design propose the Service pattern to model these operations.</p></description>
</item>
<item>
<title>Custom parsers</title>
<link>https://dev.seedstack.org/addons/io/custom-parsers/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/io/custom-parsers/</guid>
<description><p>If available parsers don&rsquo;t fit your needs, the IO add-on provide an SPI for custom parsers. There are three options to
provide your own parser: static template, dynamic template or without template.</p></description>
</item>
<item>
<title>Custom renderers</title>
<link>https://dev.seedstack.org/addons/io/custom-renderers/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/io/custom-renderers/</guid>
<description><p>If available renderers don&rsquo;t fit your needs, the IO add-on provides an SPI to register your custom renderers. There are
three options to provide your own renderer: static template, dynamic template or without template.</p></description>
</item>
<item>
<title>Entities and Value Objects</title>
<link>https://dev.seedstack.org/guides/ddd-for-beginners/entities-and-value-objects/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/ddd-for-beginners/entities-and-value-objects/</guid>
<description><p>Modeling business concepts with objects may seem very intuitive at first sight but there are a lot of difficulties
awaiting us in the details. To clarify the meaning of model elements and propose a set of design practices, Domain-Driven
Design defines three patterns that express the model: Entities, Value Objects and Services. This chapter will focus
on Entities and Value Objects, leaving Services for their <a href="https://dev.seedstack.org/guides/ddd-for-beginners/behavior-and-services/">own chapter</a>.</p></description>
</item>
<item>
<title>Eureka</title>
<link>https://dev.seedstack.org/addons/netflix/eureka/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/netflix/eureka/</guid>
<description><p>This component is used to discover services for the purpose of load balancing and failover of middle-tier servers.</p></description>
</item>
<item>
<title>Hystrix</title>
<link>https://dev.seedstack.org/addons/netflix/hystrix/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/netflix/hystrix/</guid>
<description><p>This component allows you to wrap your network calls with the Hystrix library. Hystrix is a library that add latency tolerance
and fault tolerance logic, as well as metrics.</p></description>
</item>
<item>
<title>JPA with the business framework</title>
<link>https://dev.seedstack.org/addons/jpa/business/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/jpa/business/</guid>
<description>While you can do plain JPA by injecting EntityManager anywhere, it is better to define an architectural layer where you encapsulate persistence-related operations. In the business framework, persistence is confined to Repositories.
JPA repository Default JPA repository The JPA add-on will provide a default JPA repository implementation for every aggregate that does not have a custom one. Two cases may occur:
You don&rsquo;t have any custom repository interface an particular aggregate.</description>
</item>
<item>
<title>Morphia</title>
<link>https://dev.seedstack.org/addons/mongodb/morphia/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/mongodb/morphia/</guid>
<description><p><a href="https://github.com/mongodb/morphia">Morphia</a> is an Object/Document mapper. It provides annotation-based POJO mapping,
and fluent query/update APIs. SeedStack MongoDb add-on provides a module for Morphia.</p></description>
</item>
<item>
<title>REST</title>
<link>https://dev.seedstack.org/addons/crud/rest/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/crud/rest/</guid>
<description><p>This module can expose REST APIs for doing CRUD operations on aggregates, through their DTO.</p></description>
</item>
<item>
<title>Spring batch</title>
<link>https://dev.seedstack.org/addons/spring-bridge/batch/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/spring-bridge/batch/</guid>
<description><p>The SeedStack/Spring bridge add-on provides a Spring Batch specific integration.
Spring-Batch is a comprehensive solution to implement full-featured batch jobs in Java.</p></description>
</item>
<item>
<title>Transactions</title>
<link>https://dev.seedstack.org/addons/spring-bridge/transactions/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/spring-bridge/transactions/</guid>
<description><p>The SeedStack/Spring bridge add-on allows to trigger transactions across framework boundaries.</p></description>
</item>
<item>
<title>21.7 release notes</title>
<link>https://dev.seedstack.org/posts/21.7-release-notes/</link>
<pubDate>Fri, 23 Jul 2021 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/21.7-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 21.7 «Yucca».</p></description>
</item>
<item>
<title>Using development snapshots</title>
<link>https://dev.seedstack.org/guides/using-snapshots/</link>
<pubDate>Tue, 01 Jun 2021 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/using-snapshots/</guid>
<description><p>Sometimes there is a need to use a development version of a SeedStack component in your project, <strong>for testing purposes</strong>.
This guide will help you configure Maven to access SeedStack SNAPSHOT dependencies.</p></description>
</item>
<item>
<title>21.4 release notes</title>
<link>https://dev.seedstack.org/posts/21.4-release-notes/</link>
<pubDate>Sun, 09 May 2021 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/21.4-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 21.4 «Xylobium».</p></description>
</item>
<item>
<title>20.11 release notes</title>
<link>https://dev.seedstack.org/posts/20.11-release-notes/</link>
<pubDate>Mon, 30 Nov 2020 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/20.11-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 20.11 «Willow».</p></description>
</item>
<item>
<title>20.7 release notes</title>
<link>https://dev.seedstack.org/posts/20.7-release-notes/</link>
<pubDate>Thu, 27 Aug 2020 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/20.7-release-notes/</guid>
<description><p>We skipped the 20.4 version because of the world pandemic impact, but here we are, with the release of SeedStack 20.7 «Violet».</p></description>
</item>
<item>
<title>19.11 release notes</title>
<link>https://dev.seedstack.org/posts/19.11-release-notes/</link>
<pubDate>Thu, 19 Dec 2019 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/19.11-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 19.11 «Tulip».</p></description>
</item>
<item>
<title>19.7 release notes</title>
<link>https://dev.seedstack.org/posts/19.7-release-notes/</link>
<pubDate>Mon, 16 Sep 2019 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/19.7-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 19.7 «Sycamore».</p></description>
</item>
<item>
<title>19.4 release notes</title>
<link>https://dev.seedstack.org/posts/19.4-release-notes/</link>
<pubDate>Thu, 06 Jun 2019 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/19.4-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 19.4 «Rose Lily».</p></description>
</item>
<item>
<title>HTTPS with Undertow</title>
<link>https://dev.seedstack.org/guides/https-with-undertow/</link>
<pubDate>Tue, 18 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/https-with-undertow/</guid>
<description><p>This guide will help you generate a certificate and configure Undertow to use it for HTTPS.</p></description>
</item>
<item>
<title>18.11 release notes</title>
<link>https://dev.seedstack.org/posts/18.11-release-notes/</link>
<pubDate>Tue, 04 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/18.11-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 18.11 «Quince».</p></description>
</item>
<item>
<title>Generating a SeedStack project</title>
<link>https://dev.seedstack.org/guides/generating-a-project/</link>
<pubDate>Tue, 11 Sep 2018 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/generating-a-project/</guid>
<description><p>Starting a project from scratch with Maven is not difficult but SeedStack makes it simpler with its generator. This
guide goes through the generation process, step-by-step.</p></description>
</item>
<item>
<title>JPA, step-by-step</title>
<link>https://dev.seedstack.org/guides/jpa/</link>
<pubDate>Tue, 11 Sep 2018 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/jpa/</guid>
<description><p>This guide details step-by-step how to configure JPA in SeedStack, to access an existing relational database.</p></description>
</item>
<item>
<title>18.7 release notes</title>
<link>https://dev.seedstack.org/posts/18.7-release-notes/</link>
<pubDate>Wed, 08 Aug 2018 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/18.7-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 18.7 «Petunia».</p></description>
</item>
<item>
<title>SeedStack on WebSphere</title>
<link>https://dev.seedstack.org/guides/seedstack-on-was/</link>
<pubDate>Tue, 12 Jun 2018 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/seedstack-on-was/</guid>
<description><p>IBM WebSphere Application Server (WAS) is a complex Web application server that can pose some challenges to
developers. The goal of this guide is to aggregate useful information about deploying SeedStack application on WAS
successfully.</p></description>
</item>
<item>
<title>18.4 release notes</title>
<link>https://dev.seedstack.org/posts/18.4-release-notes/</link>
<pubDate>Mon, 07 May 2018 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/18.4-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 18.4 «Orchid».</p></description>
</item>
<item>
<title>What's new in business framework 4.0 ?</title>
<link>https://dev.seedstack.org/posts/whats-new-in-business-4/</link>
<pubDate>Wed, 06 Dec 2017 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/whats-new-in-business-4/</guid>
<description><p>Business framework 4.x is vastly improved version. DDD specifications, simpler API, powerful pagination, stream-based
implementation, &hellip;</p></description>
</item>
<item>
<title>17.11 release notes</title>
<link>https://dev.seedstack.org/posts/17.11-release-notes/</link>
<pubDate>Sun, 03 Dec 2017 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/17.11-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 17.11 «Nymphaea». The highlight is a major update to the business framework
but it also contains two new add-ons, one being to use <a href="https://kafka.apache.org/">Apache Kafka</a> in SeedStack apps.</p></description>
</item>
<item>
<title>IntelliJ IDEA plugin released</title>
<link>https://dev.seedstack.org/posts/intellij-plugin-released/</link>
<pubDate>Thu, 10 Aug 2017 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/intellij-plugin-released/</guid>
<description><p>A brand new SeedStack plugin for the popular IDE <a href="https://www.jetbrains.com/idea/">Intellij IDEA</a> has been released.
</p></description>
</item>
<item>
<title>17.7 release notes</title>
<link>https://dev.seedstack.org/posts/17.7-release-notes/</link>
<pubDate>Fri, 04 Aug 2017 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/17.7-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 17.7 «Magnolia». This version focuses on cloud-related capabilities
(see AWS Lambda and Consul add-ons below) and much-improved project generation including an optional ready-to-use
Docker environment for your Web projects. </p></description>
</item>
<item>
<title>SeedStack wins the OW2 quality award</title>
<link>https://dev.seedstack.org/posts/ow2-quality-award-2017/</link>
<pubDate>Mon, 26 Jun 2017 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/ow2-quality-award-2017/</guid>
<description><p>The SeedStack project received the OW2 quality award during the 2017 edition of <a href="https://www.ow2con.org">OW2con</a>, the
OW2 annual community event. </p></description>
</item>
<item>
<title>17.4 release notes</title>
<link>https://dev.seedstack.org/posts/17.4-release-notes/</link>
<pubDate>Thu, 04 May 2017 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/17.4-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 17.4 «Lotus». This is mostly a maintenance release but some new components
are provided.</p></description>
</item>
<item>
<title>JAX-RS basics</title>
<link>https://dev.seedstack.org/guides/jaxrs-basics/</link>
<pubDate>Thu, 09 Feb 2017 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/jaxrs-basics/</guid>
<description><p>JAX-RS is a specification providing a standard way to write REST resources in Java. SeedStack implements the JAX-RS
standard through the <a href="https://jersey.java.net/">Jersey 2</a> implementation.</p></description>
</item>
<item>
<title>RESTful API design</title>
<link>https://dev.seedstack.org/guides/restful-api-design/</link>
<pubDate>Wed, 08 Feb 2017 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/restful-api-design/</guid>
<description><p>The <a href="https://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm">Representational State Transfer</a> (REST) architectural style was defined in 2000 by Roy Fielding. This architectural
style defines a set of constraints based on the Web architecture.</p></description>
</item>
<item>
<title>Conversion to WAR</title>
<link>https://dev.seedstack.org/guides/conversion-to-war/</link>
<pubDate>Mon, 06 Feb 2017 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/conversion-to-war/</guid>
<description><p>SeedStack projects created by the <a href="https://dev.seedstack.org/docs/maven-plugin/generate/">generate goal</a> of the SeedStack Maven plugin are
designed to be run from command-line with an embedded Web server. You can convert this kind of project to a classic WAR.</p></description>
</item>
<item>
<title>Creating an add-on</title>
<link>https://dev.seedstack.org/guides/creating-addon/</link>
<pubDate>Wed, 31 Aug 2016 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/creating-addon/</guid>
<description><p>SeedStack is an extensible solution that can be enriched with add-ons to provide new functionality or features.
Writing an add-on is not a difficult task as it is very similar to writing an application but some rules and
conventions must be obeyed. This guide will describe these rules and conventions.</p></description>
</item>
<item>
<title>16.11.2 release notes</title>
<link>https://dev.seedstack.org/posts/16.11.2-release-notes/</link>
<pubDate>Fri, 29 Jul 2016 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/16.11.2-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 16.11 «Kiwi». This is a major release bringing new exciting changes
such as a cleaner, much more powerful configuration system.</p></description>
</item>
<item>
<title>16.7 release notes</title>
<link>https://dev.seedstack.org/posts/16.7-release-notes/</link>
<pubDate>Fri, 29 Jul 2016 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/16.7-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 16.7 «Jasmine», a maintenance release.</p></description>
</item>
<item>
<title>16.4 release notes</title>
<link>https://dev.seedstack.org/posts/16.4-release-notes/</link>
<pubDate>Thu, 28 Apr 2016 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/16.4-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 16.4, the first major release of 2016. Building on the recently introduced
add-on architecture, this releases brings several new components and features. A lot of improvements have also been done
under-the-hood to keep SeedStack up-to-date with current technologies and standards.</p></description>
</item>
<item>
<title>15.11.2 release notes</title>
<link>https://dev.seedstack.org/posts/15.11.2-release-notes/</link>
<pubDate>Wed, 10 Feb 2016 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/15.11.2-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 15.11.2, the second incremental update of SeedStack 15.11.</p></description>
</item>
<item>
<title>15.11.1 release notes</title>
<link>https://dev.seedstack.org/posts/15.11.1-release-notes/</link>
<pubDate>Fri, 22 Jan 2016 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/15.11.1-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 15.11.1, an incremental update of SeedStack 15.11.</p></description>
</item>
<item>
<title>15.11 release notes</title>
<link>https://dev.seedstack.org/posts/15.11-release-notes/</link>
<pubDate>Fri, 27 Nov 2015 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/15.11-release-notes/</guid>
<description><p>We are happy to announce the release of SeedStack 15.11, codenamed &laquo;Hibiscus&raquo;. This new version comes with a new
add-on architecture and several new features like business framework improvements, a full-featured cryptography
module and support for several NoSQL technologies.</p></description>
</item>
<item>
<title>Introduction</title>
<link>https://dev.seedstack.org/guides/ddd-for-beginners/</link>
<pubDate>Tue, 23 Jun 2015 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/guides/ddd-for-beginners/</guid>
<description></description>
</item>
<item>
<title>Welcome to SeedStack</title>
<link>https://dev.seedstack.org/posts/welcome-to-seedstack/</link>
<pubDate>Sat, 02 May 2015 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/posts/welcome-to-seedstack/</guid>
<description><p>Welcome to SeedStack, an Open-Source enterprise-class development stack for building modern and robust applications.
SeedStack has been derived from a <a href="http://www.psa-peugeot-citroen.com/">PSA Peugeot Citroën</a> internal development
stack.</p></description>
</item>
<item>
<title>Add-on samples</title>
<link>https://dev.seedstack.org/docs/samples/addon/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/samples/addon/</guid>
<description>Web-Services add-on This sample demonstrates JAX-WS integration:
Basic Web-Service, Username token secured Web-Service, Certificate secured Web-Service, Client usage of those Web-Services. GitHub: https://github.com/seedstack/samples/tree/master/addons/web-services Relevant docs: Web-Services add-on.
W20 bridge add-on This sample demonstrates integration of the W20 framework:
Usage of W20 JAR packaging, Custom W20 configuration handler, Basic W20 UI. GitHub: https://github.com/seedstack/samples/tree/master/addons/w20-bridge Relevant docs: W20 bridge add-on.
Spring bridge This sample demonstrates the integration of Spring framework with SeedStack:</description>
</item>
<item>
<title>Aggregates</title>
<link>https://dev.seedstack.org/docs/business/aggregates/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/business/aggregates/</guid>
<description><p><div class="callout callout-def">
<div style="display:table; width: 100%">
<div style="display:table-cell; width: 50px; vertical-align: middle;">
<i class="fa fa-quote-left icon-2x"></i>
</div>
<div style="display:table-cell; vertical-align: middle;">
<p><strong>An aggregate is a cluster of cohesive entities and value objects that is treated as a single unit.<br>
Aggregates have clear boundaries and are loosely coupled to each other.</strong></p>
</div>
</div>
</div>
</p></description>
</item>
<item>
<title>Assemblers</title>
<link>https://dev.seedstack.org/docs/business/assemblers/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/business/assemblers/</guid>
<description><p><div class="callout callout-def">
<div style="display:table; width: 100%">
<div style="display:table-cell; width: 50px; vertical-align: middle;">
<i class="fa fa-quote-left icon-2x"></i>
</div>
<div style="display:table-cell; vertical-align: middle;">
<p><strong>An assembler is an interface object responsible for mapping one or more aggregate(s) to a Data Transfer Object (DTO)
and back.</strong></p>
</div>
</div>
</div>
</p></description>
</item>
<item>
<title>Audit</title>
<link>https://dev.seedstack.org/addons/audit/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/audit/</guid>
<description><p>The Audit add-on provides the ability to trace who does what in your application.</p></description>
</item>
<item>
<title>Basic samples</title>
<link>https://dev.seedstack.org/docs/samples/basic/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/samples/basic/</guid>
<description>A lot of small samples, demonstrating basic SeedStack features:
Business code, Command-line,
Configuration, Logging, Security, Diagnostic, Custom Guice module, Custom plugin, Command-line, JAX-RS resources, Web servlets, filters and listeners, WebSocket, Integration testing. GitHub: https://github.com/seedstack/samples/tree/master/basics
</description>
</item>
<item>
<title>Bibliography</title>
<link>https://dev.seedstack.org/docs/business/bibliography/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/business/bibliography/</guid>
<description>To go beyond what is described in this documentation, we recommend a few books which will help you to better understand DDD, independently of the business framework.
Domain-Driven Design community This is a major online resource about Domain-Driven Design with a lot of contents to discover and learn about it.
Online community Eric Evans: Domain-Driven Design Reference This book by Eric Evans is a summary of patterns and definitions of Domain-Driven Design.</description>
</item>
<item>
<title>Business code</title>
<link>https://dev.seedstack.org/docs/basics/business/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/basics/business/</guid>
<description>Now it is time to spice up our &laquo;Hello World&raquo; application with some business code. With SeedStack business framework, it is easy to write clean and maintainable business code.
Domain-Driven Design Domain-Driven Design is a software approach built on the idea of solving business problems through code. This is done by focusing on the heart of the business logic, to distill a design that can solve business problems.
The business framework helps with the implementation of that domain model.</description>
</item>
<item>
<title>CORS</title>
<link>https://dev.seedstack.org/docs/web/cors/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/web/cors/</guid>
<description>Cross-Origin Resource Sharing (CORS) is supported through a Java filter and can be enabled in any SeedStack application.
Seed integrates the CORS filter from dzhuvinov software. There is no need to install and configure the filter manually, it is automatically registered by Seed. All filter options can be specified through configuration properties.
Configuration CORS can be enabled and configuration as below:
Configuration Tool web: cors: # The servlet path mapping on which CORS will be active path: (String) # If true, Cross-Origin-Resource-Sharing (CORS) will be enabled enabled: (boolean) # Allows to specify custom properties to the CORS filter (see below) properties: key: (String) To dump the web.</description>
</item>
<item>
<title>Configuration</title>
<link>https://dev.seedstack.org/docs/core/configuration/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/core/configuration/</guid>
<description><p>SeedStack provides a simple and powerful configuration system. Configuration can be read from multiple sources and in
multiple formats. The recommended way to specify configuration is a <a href="https://en.wikipedia.org/wiki/YAML">YAML</a> file
named <code>application.yaml</code> located at the root of the classpath.</p></description>
</item>
<item>
<title>Consul</title>
<link>https://dev.seedstack.org/addons/consul/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/consul/</guid>
<description><p>The Consul add-on allows you to configure, inject and use Java Consul clients.</p></description>
</item>
<item>
<title>Contact</title>
<link>https://dev.seedstack.org/community/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/community/</guid>
<description><p>Contact SeedStack members, file issues or ask for help.</p></description>
</item>
<item>
<title>Contributors</title>
<link>https://dev.seedstack.org/community/contributors/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/community/contributors/</guid>
<description><p>All contributors to SeedStack, past and present, are listed below. Thanks to all of them for their time and effort !</p></description>
</item>
<item>
<title>Core</title>
<link>https://dev.seedstack.org/addons/spring-bridge/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/spring-bridge/</guid>
<description><p>SeedStack Spring bridge add-on is a bi-directional injection bridge between SeedStack (Guice) and Spring. It allows to
inject Spring beans with Guice and vice-versa.</p></description>
</item>
<item>
<title>Cryptography</title>
<link>https://dev.seedstack.org/docs/core/crypto/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/core/crypto/</guid>
<description><p>SeedStack support easy configuration of Java key stores and SSL along with services for private key encryption
and secure hashing.</p></description>
</item>
<item>
<title>Data security</title>
<link>https://dev.seedstack.org/addons/data-security/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/data-security/</guid>
<description><p>SeedStack data security add-on provides data obfuscation for any POJO according to the application security policy. The
goal is to protect the data exposed by an application.
</p></description>
</item>
<item>
<title>Defining commands</title>
<link>https://dev.seedstack.org/docs/cli/commands/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/cli/commands/</guid>
<description>To define a CLI command, simply declare a class implementing the CommandLineHandler interface and annotated with @CliCommand:
@CliCommand(&quot;myCommand&quot;) public class MyCommandLineHandler implements CommandLineHandler { @Override public Integer call() throws Exception { return 0; } } This will register the command named myCommand without any option or argument. When this command is invoked from the command-line, the call method is invoked. You must return an integer code from this method which will be returned to the operating system.</description>
</item>
<item>
<title>Definitions</title>
<link>https://dev.seedstack.org/glossary/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/glossary/</guid>
<description>Anemic domain model An anti-pattern where the domain objects have hardly any behavior. Frequently they are just data holders with getter/setter access and the logic completely lives in services on top of the domain objects. This is contrary to the essence of object-oriented design which is to combine data and behavior together.
This anti-pattern is really a procedural design in disguise. It has the cost of a good domain model but none of the benefits.</description>
</item>
<item>
<title>Dependency injection</title>
<link>https://dev.seedstack.org/docs/basics/dependency-injection/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/basics/dependency-injection/</guid>
<description><p>SeedStack development model is based on the <a href="https://en.wikipedia.org/wiki/Dependency_injection">dependency injection principle</a>
where the dependencies of a class are injected in it by the framework instead of looked up.</p></description>
</item>
<item>
<title>Diagnostics</title>
<link>https://dev.seedstack.org/docs/troubleshooting/diagnostics/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/troubleshooting/diagnostics/</guid>
<description>Startup/shutdown diagnostic When an exception is thrown on startup or shutdown, the full stacktrace is displayed in the console. But a YAML diagnostic is also produced and written to a temporary directory. The diagnostic file contains information about the SeedStack and can be helpful to do advanced troubleshooting.
A warning log will tell where the diagnostic file is saved:
Diagnostic information dumped to file:///tmp/seedstack-diagnostics/seedstack-diagnostic-2019-06-06-14-06-21.111.yaml Web request diagnostic If enabled, a diagnostic file can be dumped for each Web request ending with an exception.</description>
</item>
<item>
<title>Domain events</title>
<link>https://dev.seedstack.org/docs/business/domain-events/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/business/domain-events/</guid>
<description><p><div class="callout callout-def">
<div style="display:table; width: 100%">
<div style="display:table-cell; width: 50px; vertical-align: middle;">
<i class="fa fa-quote-left icon-2x"></i>
</div>
<div style="display:table-cell; vertical-align: middle;">
<p><strong>A domain event is used to represent something that happened in the domain.<br>
It happened in the past and is of interest to the business.</strong></p>
</div>
</div>
</div>
</p></description>
</item>
<item>
<title>Download samples</title>
<link>https://dev.seedstack.org/docs/samples/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/samples/</guid>
<description><p>Try out the samples below to learn what SeedStack is capable of.</p></description>
</item>
<item>
<title>Dump effective configuration</title>
<link>https://dev.seedstack.org/docs/maven-plugin/effective-config/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/maven-plugin/effective-config/</guid>
<description><p>The <code>effective-config</code> goal produces a YAML dump of the configuration as scanned, parsed and aggregated by SeedStack.
This will show the global configuration as the application sees it.</p></description>
</item>
<item>
<title>Dump effective test configuration</title>
<link>https://dev.seedstack.org/docs/maven-plugin/effective-test-config/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/maven-plugin/effective-test-config/</guid>
<description><p>The <code>effective-test-config</code> goal produces a YAML dump of the <strong>test</strong> configuration as scanned, parsed and aggregated by SeedStack.
This will show the global configuration as the application sees it, including the test classpath.</p></description>
</item>
<item>
<title>ElasticSearch</title>
<link>https://dev.seedstack.org/addons/elasticsearch/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/elasticsearch/</guid>
<description><p>The ElasticSearch add-on allows you to configure, inject and use <a href="https://www.elastic.co">ElasticSearch</a> clients.</p></description>
</item>
<item>
<title>Encrypting secrets</title>
<link>https://dev.seedstack.org/docs/maven-plugin/crypt/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/maven-plugin/crypt/</guid>
<description><p>The <code>crypt</code> goal encrypts the given argument using the application configured <code>master</code> key store and the specified alias.
This allows to <a href="https://dev.seedstack.org/docs/seed/manual/crypto#encrypting-configuration-sensitive-values">encrypt sensitive configuration values</a>.</p></description>
</item>
<item>
<title>Entities</title>
<link>https://dev.seedstack.org/docs/business/entities/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/business/entities/</guid>
<description><p><div class="callout callout-def">
<div style="display:table; width: 100%">
<div style="display:table-cell; width: 50px; vertical-align: middle;">
<i class="fa fa-quote-left icon-2x"></i>
</div>
<div style="display:table-cell; vertical-align: middle;">
<p><strong>An entity is used to represent a domain concept distinguished by an identity.<br>
This identity must remain the same through the whole entity lifecycle.</strong></p>
</div>
</div>
</div>
</p></description>
</item>
<item>
<title>Exceptions</title>
<link>https://dev.seedstack.org/docs/troubleshooting/exceptions/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/troubleshooting/exceptions/</guid>
<description>All SeedStack exceptions extend BaseException which is a RuntimeException. This means that you are not required to catch framework exceptions although you can do so if needed.
All SeedStack exceptions display a detailed information report about the failure. Consider this example:
org.seedstack.seed.SeedException: [CORE] Unexpected exception Description ----------- Unexpected exception during Seed startup or shutdown. Causes ------ 1. com.google.inject.ProvisionException: Unable to provision, see the following errors: 1) Error injecting org.seedstack.seed.core.ConfigurationIT$Holder using org.</description>
</item>
<item>
<title>FAQ</title>
<link>https://dev.seedstack.org/project/faq/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/project/faq/</guid>
<description><p>Answers to common questions about SeedStack.</p></description>
</item>
<item>
<title>Factories</title>
<link>https://dev.seedstack.org/docs/business/factories/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/business/factories/</guid>
<description><p><div class="callout callout-def">
<div style="display:table; width: 100%">
<div style="display:table-cell; width: 50px; vertical-align: middle;">
<i class="fa fa-quote-left icon-2x"></i>
</div>
<div style="display:table-cell; vertical-align: middle;">
<p><strong>A factory is responsible for creating a whole, internally consistent aggregate when it is too complicated to do
it in a constructor.</strong></p>
</div>
</div>
</div>
</p></description>
</item>
<item>
<title>Feign</title>
<link>https://dev.seedstack.org/addons/feign/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/feign/</guid>
<description><p>This component allows you to define an HTTP client with a simple Java interface that you can then inject and use transparently
in your code.</p></description>
</item>
<item>
<title>Fluent assembler</title>
<link>https://dev.seedstack.org/docs/business/fluent-assembler/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/business/fluent-assembler/</guid>
<description><p>As described in the <a href="https://dev.seedstack.org/docs/business/assemblers/">assemblers page</a>, you can inject assemblers and use them
directly. However, the business framework provides a Domain-Specific Language (DSL) to do common Aggregate/DTO mapping
operations.</p></description>
</item>
<item>
<title>Flyway</title>
<link>https://dev.seedstack.org/addons/flyway/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/flyway/</guid>
<description>SeedStack Flyway add-on provides support for automatic database migration through Flyway.
For more information about Flyway: https://flywaydb.org/documentation/
Dependency Maven Gradle &lt;dependency&gt; &lt;groupId&gt;org.seedstack.addons.flyway&lt;/groupId&gt; &lt;artifactId&gt;flyway&lt;/artifactId&gt;&lt;version&gt;2.0.0&lt;/version&gt; &lt;/dependency&gt; Specifying versions manually is error-prone, use dependency management instead. Show version dependencies { compile(&quot;org.seedstack.addons.flyway:flyway:2.0.0&quot;) } Configuration To enable database migration, a properly configured datasource is required:
jdbc: datasources: someDatasource: url: jdbc:hsqldb:mem:somedb With only this configuration, the Flyway add-on will lookup for SQL migration scripts in the db/migration/&lt;dsName&gt; classpath location and if it finds any, will apply the necessary scripts to upgrade the database to the latest version.</description>
</item>
<item>
<title>Full applications</title>
<link>https://dev.seedstack.org/docs/samples/full/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/samples/full/</guid>
<description>Classic Web application This sample demonstrates a full end-to-end Web application:
Simple domain code, JPA persistence, REST resources, Assemblers, Pagination, Static resources serving, W20 UI. GitHub: https://github.com/seedstack/samples/tree/master/full-apps/store-webapp Relevant docs: Business framework, JPA add-on, JDBC add-on, REST support, Web support, W20 UI framework.
REST micro-service This sample demonstrates an hypermedia-capable REST micro-service:
Business code JAX-RS resources, SeedStack hypermedia features: HAL and JSON-HOME. Integration testing.</description>
</item>
<item>
<title>Getting started</title>
<link>https://dev.seedstack.org/docs/basics/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/basics/</guid>
<description><p>This page will help you create and build your first SeedStack application.</p></description>
</item>
<item>
<title>Hot-reloading</title>
<link>https://dev.seedstack.org/docs/maven-plugin/watch/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/maven-plugin/watch/</guid>
<description><p>The <code>watch</code> goal runs any self-executable SeedStack application in hot-reloading mode.</p></description>
</item>
<item>
<title>I18n</title>
<link>https://dev.seedstack.org/addons/i18n/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/i18n/</guid>
<description><p>The i18n addon provides backend services and a Web UI to manage your application&rsquo;s locales and translations.</p></description>
</item>
<item>
<title>Integration testing</title>
<link>https://dev.seedstack.org/docs/core/testing/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/core/testing/</guid>
<description><p>SeedStack provides several features and tools to do integration testing in your application.</p></description>
</item>
<item>
<title>JAR Packaging</title>
<link>https://dev.seedstack.org/docs/maven-plugin/package/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/docs/maven-plugin/package/</guid>
<description><p>The <code>package</code> goal packages any self-executable SeedStack application in a <a href="http://www.capsule.io/">Capsule</a>.
A Capsule is a way of packaging and running any application with all its dependencies from a unique plain executable JAR.</p></description>
</item>
<item>
<title>JCR Configuration</title>
<link>https://dev.seedstack.org/addons/jcr/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/jcr/</guid>
<description><p>SeedStack JCR add-on supports any JCR-compliant <a href="https://en.wikipedia.org/wiki/Content_repository_API_for_Java">Repository Content</a> to allow
your application to interface with a repository content.</p></description>
</item>
<item>
<title>JCache</title>
<link>https://dev.seedstack.org/addons/jcache/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/jcache/</guid>
<description><p>The JCache add-on integrates the JCache API (a.k.a. JSR 107) which allows to interact with compliant caching providers
in a declarative or a programmatic way.</p></description>
</item>
<item>
<title>JDBC</title>
<link>https://dev.seedstack.org/addons/jdbc/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://dev.seedstack.org/addons/jdbc/</guid>
<description><p>SeedStack JDBC add-on provides support for connection to any relational database through the JDBC API.</p></description>
</item>