-
Notifications
You must be signed in to change notification settings - Fork 906
/
application.yml
1569 lines (1563 loc) · 70.8 KB
/
application.yml
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
logging:
level:
org.springframework.core.env: warn
org.springframework.jndi: warn
management:
info:
env:
enabled: true
endpoints:
web:
exposure:
include:
- health
- info
server:
compression:
enabled: true
mime-types: application/json,text/css,text/html
min-response-size: 2048
error:
include-message: always
forward-headers-strategy: native
spring:
jackson:
serialization:
write-dates-as-timestamps: false
task:
execution:
thread-name-prefix: initializr-
web:
resources:
cache:
use-last-modified: false
initializr:
env:
boms:
codecentric-spring-boot-admin:
groupId: de.codecentric
artifactId: spring-boot-admin-dependencies
versionProperty: spring-boot-admin.version
mappings:
- compatibilityRange: "[2.6.0,2.7.0-M1)"
version: 2.6.8
- compatibilityRange: "[2.7.0-M1,3.0.0-M1)"
version: 2.7.4
- compatibilityRange: "[3.0.0-M1,3.1.0-M1)"
version: 3.0.4
- compatibilityRange: "[3.1.0-M1,3.2.0-M1)"
version: 3.1.1
hilla:
groupId: dev.hilla
artifactId: hilla-bom
versionProperty: hilla.version
mappings:
- compatibilityRange: "[3.1.0-M1,3.2.0-M1)"
version: 2.1.4
sentry:
groupId: io.sentry
artifactId: sentry-bom
versionProperty: sentry.version
mappings:
- compatibilityRange: "[2.7.0,3.2.0-M1)"
version: 6.26.0
solace-spring-boot:
groupId: com.solace.spring.boot
artifactId: solace-spring-boot-bom
versionProperty: solace-spring-boot.version
mappings:
- compatibilityRange: "[2.6.0,3.0.0-M1)"
version: 1.2.2
- compatibilityRange: "3.0.0-M1"
version: 2.0.0
solace-spring-cloud:
groupId: com.solace.spring.cloud
artifactId: solace-spring-cloud-bom
versionProperty: solace-spring-cloud.version
mappings:
- compatibilityRange: "[2.6.0,3.0.0-M1)"
version: 2.3.2
- compatibilityRange: "3.0.0-M1"
version: 3.0.0
spring-cloud:
groupId: org.springframework.cloud
artifactId: spring-cloud-dependencies
versionProperty: spring-cloud.version
order: 50
mappings:
- compatibilityRange: "[2.6.0,3.0.0)"
version: 2021.0.8
- compatibilityRange: "[3.0.0,3.2.0-M1)"
version: 2022.0.3
spring-cloud-azure:
groupId: com.azure.spring
artifactId: spring-cloud-azure-dependencies
versionProperty: spring-cloud-azure.version
mappings:
- compatibilityRange: "[2.6.0,3.0.0-M1)"
version: 4.9.0
- compatibilityRange: "[3.0.0-M1,3.2.0-M1)"
version: 5.3.0
spring-cloud-gcp:
groupId: com.google.cloud
artifactId: spring-cloud-gcp-dependencies
versionProperty: spring-cloud-gcp.version
additionalBoms: [ spring-cloud ]
mappings:
- compatibilityRange: "[2.6.0,3.0.0-M1)"
version: 3.5.4
- compatibilityRange: "[3.0.0-M1,3.2.0-M1)"
version: 4.5.1
spring-cloud-services:
groupId: io.pivotal.spring.cloud
artifactId: spring-cloud-services-dependencies
versionProperty: spring-cloud-services.version
additionalBoms: [ spring-cloud ]
mappings:
- compatibilityRange: "[2.6.0,2.7.0-M1)"
version: 3.4.0
- compatibilityRange: "[2.7.0-M1,3.0.0-M1)"
version: 3.5.0
- compatibilityRange: "[3.0.0,3.2.0-M1)"
version: 4.0.3
spring-modulith:
groupId: org.springframework.modulith
artifactId: spring-modulith-bom
mappings:
- compatibility-range: "[3.1.0,3.2.0-M1)"
version: 1.0.0-M1
repositories: spring-milestones
spring-shell:
groupId: org.springframework.shell
artifactId: spring-shell-dependencies
versionProperty: spring-shell.version
mappings:
- compatibilityRange: "[2.7.0,3.0.0-M1)"
version: 2.1.11
- compatibilityRange: "[3.0.0,3.1.0-M1)"
version: 3.0.6
- compatibilityRange: "[3.1.0,3.2.0-M1)"
version: 3.1.2
testcontainers:
groupId: org.testcontainers
artifactId: testcontainers-bom
version: 1.18.3
versionProperty: testcontainers.version
vaadin:
groupId: com.vaadin
artifactId: vaadin-bom
versionProperty: vaadin.version
mappings:
- compatibilityRange: "[2.6.0,2.7.0-M1)"
version: 23.2.15
- compatibilityRange: "[2.7.0-M1,3.0.0-M1)"
version: 23.3.18
- compatibilityRange: "[3.0.0-M1,3.1.0-M1)"
version: 24.0.11
- compatibilityRange: "[3.1.0-M1,3.2.0-M1)"
version: 24.1.4
wavefront:
groupId: com.wavefront
artifactId: wavefront-spring-boot-bom
versionProperty: wavefront.version
mappings:
- compatibilityRange: "[2.6.0,2.7.0-M1)"
version: 2.2.2
- compatibilityRange: "[2.7.0-M1,3.0.0-M1)"
version: 2.3.4
- compatibilityRange: "[3.0.0-M1,3.1.0-M1)"
version: 3.0.1
gradle:
dependency-management-plugin-version: 1.0.14.RELEASE
platform:
compatibility-range: "2.6.0"
dependencies:
- name: Developer Tools
content:
- name: GraalVM Native Support
id: native
compatibilityRange: "3.0.0-M1"
groupId: org.springframework.boot
artifactId: spring-boot
description: Support for compiling Spring applications to native executables using the GraalVM native-image compiler.
starter: false
- name: Spring Boot DevTools
id: devtools
groupId: org.springframework.boot
artifactId: spring-boot-devtools
scope: runtime
description: Provides fast application restarts, LiveReload, and configurations for enhanced development experience.
starter: false
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#using.devtools
- name: Lombok
id: lombok
groupId: org.projectlombok
artifactId: lombok
scope: annotationProcessor
description: Java annotation library which helps to reduce boilerplate code.
starter: false
- name: Spring Configuration Processor
id: configuration-processor
groupId: org.springframework.boot
artifactId: spring-boot-configuration-processor
scope: annotationProcessor
description: Generate metadata for developers to offer contextual help and "code completion" when working with custom configuration keys (ex.application.properties/.yml files).
starter: false
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#appendix.configuration-metadata.annotation-processor
- name: Docker Compose Support
id: docker-compose
compatibilityRange: "3.1.0-M1"
groupId: org.springframework.boot
artifactId: spring-boot-docker-compose
scope: runtime
description: Provides docker compose support for enhanced development experience.
starter: false
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#features.docker-compose
- name: Spring Modulith
id: modulith
bom: spring-modulith
compatibility-range: "[3.1.0,3.2.0-M1)"
group-id: org.springframework.modulith
artifact-id: spring-modulith-starter-core
description: Support for building modular monolithic applications.
links:
- rel: reference
href: https://docs.spring.io/spring-modulith/docs/current/reference/html/
mappings:
- compatibilityRange: "[3.1.0,3.2.0-M1)"
starter: false
- name: Web
content:
- name: Spring Web
id: web
description: Build web, including RESTful, applications using Spring MVC. Uses Apache Tomcat as the default embedded container.
facets:
- web
- json
links:
- rel: guide
href: https://spring.io/guides/gs/rest-service/
description: Building a RESTful Web Service
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#web
- rel: guide
href: https://spring.io/guides/gs/serving-web-content/
description: Serving Web Content with Spring MVC
- rel: guide
href: https://spring.io/guides/tutorials/rest/
description: Building REST services with Spring
- name: Spring Reactive Web
id: webflux
description: Build reactive web applications with Spring WebFlux and Netty.
facets:
- json
- reactive
links:
- rel: guide
href: https://spring.io/guides/gs/reactive-rest-service/
description: Building a Reactive RESTful Web Service
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#web.reactive
- name: Spring for GraphQL
id: graphql
compatibilityRange: "2.7.0-M1"
description: Build GraphQL applications with Spring for GraphQL and GraphQL Java.
facets:
- json
links:
- rel: guide
href: https://spring.io/guides/gs/graphql-server/
description: Building a GraphQL service
- rel: reference
href: https://docs.spring.io/spring-boot/docs/${bootVersion}/reference/htmlsinge/index.html#web.graphql
- name: Rest Repositories
id: data-rest
facets:
- json
description: Exposing Spring Data repositories over REST via Spring Data REST.
links:
- rel: guide
href: https://spring.io/guides/gs/accessing-data-rest/
description: Accessing JPA Data with REST
- rel: guide
href: https://spring.io/guides/gs/accessing-neo4j-data-rest/
description: Accessing Neo4j Data with REST
- rel: guide
href: https://spring.io/guides/gs/accessing-mongodb-data-rest/
description: Accessing MongoDB Data with REST
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#howto.data-access.exposing-spring-data-repositories-as-rest
- name: Spring Session
id: session
groupId: org.springframework.session
artifactId: spring-session-core
description: Provides an API and implementations for managing user session information.
starter: false
links:
- rel: reference
href: https://docs.spring.io/spring-session/reference/
- name: Rest Repositories HAL Explorer
id: data-rest-explorer
description: Browsing Spring Data REST repositories in your browser.
starter: false
groupId: org.springframework.data
artifactId: spring-data-rest-hal-explorer
- name: Spring HATEOAS
id: hateoas
description: Eases the creation of RESTful APIs that follow the HATEOAS principle when working with Spring / Spring MVC.
links:
- rel: guide
href: https://spring.io/guides/gs/rest-hateoas/
description: Building a Hypermedia-Driven RESTful Web Service
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#web.spring-hateoas
- name: Spring Web Services
id: web-services
description: Facilitates contract-first SOAP development. Allows for the creation of flexible web services using one of the many ways to manipulate XML payloads.
aliases:
- ws
links:
- rel: guide
href: https://spring.io/guides/gs/producing-web-service/
description: Producing a SOAP web service
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#io.webservices
- name: Jersey
id: jersey
description: Framework for developing RESTful Web Services in Java that provides support for JAX-RS APIs.
facets:
- json
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#web.servlet.jersey
- name: Vaadin
id: vaadin
facets:
- web
groupId: com.vaadin
artifactId: vaadin-spring-boot-starter
description: A web framework that allows you to write UI in pure Java without getting bogged down in JS, HTML, and CSS.
bom: vaadin
compatibilityRange: "[2.6.0,3.2.0-M1)"
links:
- rel: guide
href: https://spring.io/guides/gs/crud-with-vaadin/
description: Creating CRUD UI with Vaadin
- rel: reference
href: https://vaadin.com/docs
- name: Hilla
id: hilla
bom: hilla
compatibilityRange: "[3.1.0-M1,3.2.0-M1)"
facets:
- web
groupId: dev.hilla
artifactId: hilla-react-spring-boot-starter
description: An open source framework that integrates a Spring Boot Java backend with a reactive TypeScript frontend.
links:
- rel: guide
href: https://hilla.dev/docs/react/start/quick/#coming-from-spring-initializr
description: Next Steps with Hilla
- rel: reference
href: https://hilla.dev/
- name: Template Engines
content:
- name: Thymeleaf
id: thymeleaf
description: A modern server-side Java template engine for both web and standalone environments. Allows HTML to be correctly displayed in browsers and as static prototypes.
links:
- rel: guide
href: https://spring.io/guides/gs/handling-form-submission/
description: Handling Form Submission
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#web.servlet.spring-mvc.template-engines
- name: Apache Freemarker
id: freemarker
description: Java library to generate text output (HTML web pages, e-mails, configuration files, source code, etc.) based on templates and changing data.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#web.servlet.spring-mvc.template-engines
- name: Mustache
id: mustache
description: Logic-less templates for both web and standalone environments. There are no if statements, else clauses, or for loops. Instead there are only tags.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#web.servlet.spring-mvc.template-engines
- name: Groovy Templates
id: groovy-templates
description: Groovy templating engine.
facets:
- web
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#web.servlet.spring-mvc.template-engines
- name: Security
content:
- name: Spring Security
id: security
description: Highly customizable authentication and access-control framework for Spring applications.
links:
- rel: guide
href: https://spring.io/guides/gs/securing-web/
description: Securing a Web Application
- rel: guide
href: https://spring.io/guides/tutorials/spring-boot-oauth2/
description: Spring Boot and OAuth2
- rel: guide
href: https://spring.io/guides/gs/authenticating-ldap/
description: Authenticating a User with LDAP
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#web.security
- name: OAuth2 Client
id: oauth2-client
description: Spring Boot integration for Spring Security's OAuth2/OpenID Connect client features.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#web.security.oauth2.client
- name: OAuth2 Authorization Server
id: oauth2-authorization-server
description: Spring Boot integration for Spring Authorization Server.
compatibilityRange: "3.1.0-RC1"
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#web.security.oauth2.authorization-server
- name: OAuth2 Resource Server
id: oauth2-resource-server
description: Spring Boot integration for Spring Security's OAuth2 resource server features.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#web.security.oauth2.server
- name: Spring LDAP
id: data-ldap
description: Makes it easier to build Spring based applications that use the Lightweight Directory Access Protocol.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.nosql.ldap
- name: Okta
id: okta
compatibilityRange: "[2.6.0,3.2.0-M1)"
description: Okta specific configuration for Spring Security/Spring Boot OAuth2 features. Enable your Spring Boot application to work with Okta via OAuth 2.0/OIDC.
groupId: com.okta.spring
artifactId: okta-spring-boot-starter
mappings:
- compatibilityRange: "[2.6.0,3.0.0-M1)"
version: 2.1.6
- compatibilityRange: "[3.0.0-M1,3.2.0-M1)"
version: 3.0.4
links:
- rel: guide
href: https://github.com/okta/samples-java-spring/tree/master/okta-hosted-login
description: Okta-Hosted Login Page Example
- rel: guide
href: https://github.com/okta/samples-java-spring/tree/master/custom-login
description: Custom Login Page Example
- rel: guide
href: https://github.com/okta/samples-java-spring/tree/master/resource-server
description: Okta Spring Security Resource Server Example
- rel: reference
href: https://github.com/okta/okta-spring-boot#readme
description: Okta Spring Boot documentation
- name: SQL
content:
- name: JDBC API
id: jdbc
description: Database Connectivity API that defines how a client may connect and query a database.
links:
- rel: guide
href: https://spring.io/guides/gs/relational-data-access/
description: Accessing Relational Data using JDBC with Spring
- rel: guide
href: https://spring.io/guides/gs/managing-transactions/
description: Managing Transactions
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.sql
- name: Spring Data JPA
id: data-jpa
description: Persist data in SQL stores with Java Persistence API using Spring Data and Hibernate.
facets:
- jpa
aliases:
- jpa
links:
- rel: guide
href: https://spring.io/guides/gs/accessing-data-jpa/
description: Accessing Data with JPA
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.sql.jpa-and-spring-data
- name: Spring Data JDBC
id: data-jdbc
description: Persist data in SQL stores with plain JDBC using Spring Data.
links:
- rel: guide
href: https://github.com/spring-projects/spring-data-examples/tree/master/jdbc/basics
description: Using Spring Data JDBC
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.sql.jdbc
- name: Spring Data R2DBC
id: data-r2dbc
description: Provides Reactive Relational Database Connectivity to persist data in SQL stores using Spring Data in reactive applications.
facets:
- reactive
links:
- rel: guide
href: https://spring.io/guides/gs/accessing-data-r2dbc/
description: Accessing data with R2DBC
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.sql.r2dbc
- rel: home
href: https://r2dbc.io
description: R2DBC Homepage
- name: MyBatis Framework
id: mybatis
compatibilityRange: "[2.6.0,3.2.0-M1)"
description: Persistence framework with support for custom SQL, stored procedures and advanced mappings. MyBatis couples objects with stored procedures or SQL statements using a XML descriptor or annotations.
links:
- rel: guide
href: https://github.com/mybatis/spring-boot-starter/wiki/Quick-Start
description: MyBatis Quick Start
- rel: reference
href: https://mybatis.org/spring-boot-starter/mybatis-spring-boot-autoconfigure/
groupId: org.mybatis.spring.boot
artifactId: mybatis-spring-boot-starter
mappings:
- compatibilityRange: "[2.6.0,2.7.0-M1)"
version: 2.2.2
- compatibilityRange: "[2.7.0-M1,3.0.0-M1)"
version: 2.3.1
- compatibilityRange: "3.0.0-M1"
version: 3.0.2
- name: Liquibase Migration
id: liquibase
description: Liquibase database migration and source control library.
groupId: org.liquibase
artifactId: liquibase-core
starter: false
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#howto.data-initialization.migration-tool.liquibase
- name: Flyway Migration
id: flyway
description: Version control for your database so you can migrate from any version (incl. an empty database) to the latest version of the schema.
groupId: org.flywaydb
artifactId: flyway-core
starter: false
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#howto.data-initialization.migration-tool.flyway
- name: JOOQ Access Layer
id: jooq
description: Generate Java code from your database and build type safe SQL queries through a fluent API.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.sql.jooq
- name: IBM DB2 Driver
id: db2
description: A JDBC driver that provides access to IBM DB2.
groupId: com.ibm.db2
artifactId: jcc
scope: runtime
starter: false
- name: Apache Derby Database
id: derby
description: An open source relational database implemented entirely in Java.
groupId: org.apache.derby
artifactId: derby
scope: runtime
starter: false
- name: H2 Database
id: h2
description: Provides a fast in-memory database that supports JDBC API and R2DBC access, with a small (2mb) footprint. Supports embedded and server modes as well as a browser based console application.
groupId: com.h2database
artifactId: h2
scope: runtime
starter: false
- name: HyperSQL Database
id: hsql
description: Lightweight 100% Java SQL Database Engine.
groupId: org.hsqldb
artifactId: hsqldb
scope: runtime
starter: false
- name: MariaDB Driver
id: mariadb
description: MariaDB JDBC and R2DBC driver.
groupId: org.mariadb.jdbc
artifactId: mariadb-java-client
scope: runtime
starter: false
- name: MS SQL Server Driver
id: sqlserver
description: A JDBC and R2DBC driver that provides access to Microsoft SQL Server and Azure SQL Database from any Java application.
groupId: com.microsoft.sqlserver
artifactId: mssql-jdbc
scope: runtime
starter: false
- name: MySQL Driver
id: mysql
description: MySQL JDBC driver.
groupId: com.mysql
artifactId: mysql-connector-j
scope: runtime
starter: false
links:
- rel: guide
href: https://spring.io/guides/gs/accessing-data-mysql/
description: Accessing data with MySQL
- name: Oracle Driver
id: oracle
description: A JDBC driver that provides access to Oracle.
groupId: com.oracle.database.jdbc
artifactId: ojdbc8
scope: runtime
starter: false
- name: PostgreSQL Driver
id: postgresql
description: A JDBC and R2DBC driver that allows Java programs to connect to a PostgreSQL database using standard, database independent Java code.
groupId: org.postgresql
artifactId: postgresql
scope: runtime
starter: false
- name: NoSQL
content:
- name: Spring Data Redis (Access+Driver)
id: data-redis
description: Advanced and thread-safe Java Redis client for synchronous, asynchronous, and reactive usage. Supports Cluster, Sentinel, Pipelining, Auto-Reconnect, Codecs and much more.
aliases:
- redis
links:
- rel: guide
href: https://spring.io/guides/gs/messaging-redis/
description: Messaging with Redis
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.nosql.redis
- name: Spring Data Reactive Redis
id: data-redis-reactive
description: Access Redis key-value data stores in a reactive fashion with Spring Data Redis.
facets:
- reactive
links:
- rel: guide
href: https://spring.io/guides/gs/messaging-redis/
description: Messaging with Redis
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.nosql.redis
- name: Spring Data MongoDB
id: data-mongodb
description: Store data in flexible, JSON-like documents, meaning fields can vary from document to document and data structure can be changed over time.
links:
- rel: guide
href: https://spring.io/guides/gs/accessing-data-mongodb/
description: Accessing Data with MongoDB
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.nosql.mongodb
- name: Spring Data Reactive MongoDB
id: data-mongodb-reactive
description: Provides asynchronous stream processing with non-blocking back pressure for MongoDB.
facets:
- reactive
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.nosql.mongodb
- rel: guide
href: https://spring.io/guides/gs/accessing-data-mongodb/
description: Accessing Data with MongoDB
- name: Spring Data Elasticsearch (Access+Driver)
id: data-elasticsearch
description: A distributed, RESTful search and analytics engine with Spring Data Elasticsearch.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.nosql.elasticsearch
- name: Spring Data for Apache Cassandra
id: data-cassandra
description: A free and open-source, distributed, NoSQL database management system that offers high-scalability and high-performance.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.nosql.cassandra
- rel: guide
href: https://spring.io/guides/gs/accessing-data-cassandra/
- name: Spring Data Reactive for Apache Cassandra
id: data-cassandra-reactive
description: Access Cassandra NoSQL Database in a reactive fashion.
facets:
- reactive
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.nosql.cassandra
- rel: guide
href: https://spring.io/guides/gs/accessing-data-cassandra/
- name: Spring Data Couchbase
id: data-couchbase
description: NoSQL document-oriented database that offers in memory-first architecture, geo-distributed deployments, and workload isolation.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.nosql.couchbase
- name: Spring Data Reactive Couchbase
id: data-couchbase-reactive
description: Access Couchbase NoSQL database in a reactive fashion with Spring Data Couchbase.
facets:
- reactive
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.nosql.couchbase
- name: Spring Data Neo4j
id: data-neo4j
description: An open source NoSQL database that stores data structured as graphs consisting of nodes, connected by relationships.
links:
- rel: guide
href: https://spring.io/guides/gs/accessing-data-neo4j/
description: Accessing Data with Neo4j
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#data.nosql.neo4j
- name: Messaging
content:
- name: Spring Integration
id: integration
description: Adds support for Enterprise Integration Patterns. Enables lightweight messaging and supports integration with external systems via declarative adapters.
links:
- rel: guide
href: https://spring.io/guides/gs/integration/
description: Integrating Data
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#messaging.spring-integration
- name: Spring for RabbitMQ
id: amqp
description: Gives your applications a common platform to send and receive messages, and your messages a safe place to live until received.
links:
- rel: guide
href: https://spring.io/guides/gs/messaging-rabbitmq/
description: Messaging with RabbitMQ
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#messaging.amqp
- name: Spring for Apache Kafka
id: kafka
description: Publish, subscribe, store, and process streams of records.
groupId: org.springframework.kafka
artifactId: spring-kafka
starter: false
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#messaging.kafka
- name: Spring for Apache Kafka Streams
id: kafka-streams
description: Building stream processing applications with Apache Kafka Streams.
groupId: org.apache.kafka
artifactId: kafka-streams
starter: false
links:
- rel: guide
href: https://github.com/spring-cloud/spring-cloud-stream-samples/tree/master/kafka-streams-samples
description: Samples for using Apache Kafka Streams with Spring Cloud stream
- rel: reference
href: https://docs.spring.io/spring-kafka/docs/current/reference/html/#streams-kafka-streams
description: Apache Kafka Streams Support
- rel: reference
href: https://docs.spring.io/spring-cloud-stream/docs/current/reference/htmlsinge/index.html#_kafka_streams_binding_capabilities_of_spring_cloud_stream
description: Apache Kafka Streams Binding Capabilities of Spring Cloud Stream
- name: Spring for Apache ActiveMQ 5
id: activemq
description: Spring JMS support with Apache ActiveMQ 'Classic'.
links:
- rel: guide
href: https://spring.io/guides/gs/messaging-jms/
description: Java Message Service API via Apache ActiveMQ Classic.
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#messaging.jms.activemq
- name: Spring for Apache ActiveMQ Artemis
id: artemis
description: Spring JMS support with Apache ActiveMQ Artemis.
links:
- rel: guide
href: https://spring.io/guides/gs/messaging-jms/
description: Messaging with JMS
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#messaging.jms.artemis
- name: Spring for Apache Pulsar
id: pulsar
compatibilityRange: "[3.0.0,3.2.0-M1)"
mappings:
- compatibilityRange: "[3.0.0,3.2.0-M1)"
version: 0.2.0
description: Build messaging applications with Apache Pulsar
groupId: org.springframework.pulsar
artifactId: spring-pulsar-spring-boot-starter
links:
- rel: reference
href: https://docs.spring.io/spring-pulsar/docs/0.2.x/reference/html/
- name: Spring for Apache Pulsar (Reactive)
id: pulsar-reactive
compatibilityRange: "[3.0.0,3.2.0-M1)"
mappings:
- compatibilityRange: "[3.0.0,3.2.0-M1)"
version: 0.2.0
description: Build reactive messaging applications with Apache Pulsar
facets:
- reactive
groupId: org.springframework.pulsar
artifactId: spring-pulsar-reactive-spring-boot-starter
links:
- rel: reference
href: https://docs.spring.io/spring-pulsar/docs/0.2.x/reference/html/#reactive-pulsar
- name: WebSocket
id: websocket
description: Build Servlet-based WebSocket applications with SockJS and STOMP.
links:
- rel: guide
href: https://spring.io/guides/gs/messaging-stomp-websocket/
description: Using WebSocket to build an interactive web application
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#messaging.websockets
- name: RSocket
id: rsocket
description: RSocket.io applications with Spring Messaging and Netty.
facets:
- reactive
links:
- rel: reference
href: https://rsocket.io/
- name: Apache Camel
id: camel
compatibilityRange: "[2.6.0,3.2.0-M1)"
mappings:
- compatibilityRange: "[2.6.0,2.7.0-M1)"
version: 3.17.0
- compatibilityRange: "[2.7.0.M1,3.0.0-M1)"
version: 3.20.6
- compatibilityRange: "[3.0.0-M1,3.2.0-M1)"
version: 4.0.0-RC1
description: Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data.
groupId: org.apache.camel.springboot
artifactId: camel-spring-boot-starter
links:
- rel: guide
href: https://camel.apache.org/camel-spring-boot/latest/spring-boot.html
description: Using Apache Camel with Spring Boot
- name: Solace PubSub+
bom: solace-spring-boot
id: solace
compatibilityRange: "[2.6.0,3.2.0-M1)"
description: Connect to a Solace PubSub+ Advanced Event Broker to publish, subscribe, request/reply and store/replay messages
groupId: com.solace.spring.boot
artifactId: solace-spring-boot-starter
links:
- rel: reference
href: https://www.solace.dev/start-spring-io-help/
description: Getting started with Solace and Spring
- rel: reference
href: https://solace.dev
description: Solace Developer Portal
- name: I/O
content:
- name: Spring Batch
id: batch
description: Batch applications with transactions, retry/skip and chunk based processing.
links:
- rel: guide
href: https://spring.io/guides/gs/batch-processing/
description: Creating a Batch Service
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#howto.batch
- name: Validation
id: validation
description: Bean Validation with Hibernate validator.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#io.validation
- rel: guide
href: https://spring.io/guides/gs/validating-form-input/
- name: Java Mail Sender
id: mail
description: Send email using Java Mail and Spring Framework's JavaMailSender.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#io.email
- name: Quartz Scheduler
id: quartz
description: Schedule jobs using Quartz.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#io.quartz
- name: Spring cache abstraction
id: cache
description: Provides cache-related operations, such as the ability to update the content of the cache, but does not provide the actual data store.
links:
- rel: guide
href: https://spring.io/guides/gs/caching/
description: Caching Data with Spring
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#io.caching
- name: Picocli
id: picocli
groupId: info.picocli
artifactId: picocli-spring-boot-starter
compatibilityRange: "[2.6.0,3.1.0-M1)"
description: Build command line applications with picocli.
mappings:
- compatibilityRange: "[2.6.0,3.1.0-M1)"
version: 4.7.4
links:
- rel: reference
href: https://picocli.info/#_spring_boot_example
- name: Spring Shell
id: spring-shell
groupId: org.springframework.shell
artifactId: spring-shell-starter
description: Build command line applications with spring.
compatibilityRange: "[2.7.0,3.2.0-M1)"
bom: spring-shell
links:
- rel: reference
href: https://spring.io/projects/spring-shell
- name: Ops
content:
- name: Spring Boot Actuator
id: actuator
description: Supports built in (or custom) endpoints that let you monitor and manage your application - such as application health, metrics, sessions, etc.
links:
- rel: guide
href: https://spring.io/guides/gs/actuator-service/
description: Building a RESTful Web Service with Spring Boot Actuator
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#actuator
- name: codecentric's Spring Boot Admin (Client)
id: codecentric-spring-boot-admin-client
groupId: de.codecentric
artifactId: spring-boot-admin-starter-client
description: Required for your application to register with a Codecentric's Spring Boot Admin Server instance.
compatibilityRange: "[2.6.0,3.2.0-M1)"
bom: codecentric-spring-boot-admin
links:
- rel: reference
href: https://codecentric.github.io/spring-boot-admin/current/#getting-started
- name: codecentric's Spring Boot Admin (Server)
id: codecentric-spring-boot-admin-server
groupId: de.codecentric
artifactId: spring-boot-admin-starter-server
description: A community project to manage and monitor your Spring Boot applications. Provides a UI on top of the Spring Boot Actuator endpoints.
compatibilityRange: "[2.6.0,3.2.0-M1)"
bom: codecentric-spring-boot-admin
links:
- rel: reference
href: https://codecentric.github.io/spring-boot-admin/current/#getting-started
- name: Sentry
id: sentry
bom: sentry
description: Application performance monitoring and error tracking that help software teams see clearer, solve quicker, and learn continuously.
compatibilityRange: "[2.7.0,3.2.0-M1)"
groupId: io.sentry
artifactId: sentry-spring-boot-starter-jakarta
starter: false
mappings:
- compatibilityRange: "[2.7.0,3.0.0-M1)"
artifactId: sentry-spring-boot-starter
links:
- rel: reference
href: https://docs.sentry.io/platforms/java/
- rel: guide
href: https://docs.sentry.io/platforms/java/guides/spring-boot/
description: Getting Started with Sentry
- name: Observability
content:
- name: Datadog
id: datadog
groupId: io.micrometer
artifactId: micrometer-registry-datadog
scope: runtime
starter: false
description: Publish Micrometer metrics to Datadog, a dimensional time-series SaaS with built-in dashboarding and alerting.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#actuator.metrics.export.datadog
- name: Dynatrace
id: dynatrace
groupId: io.micrometer
artifactId: micrometer-registry-dynatrace
scope: runtime
starter: false
description: Publish Micrometer metrics to Dynatrace, a platform featuring observability, AIOps, application security and analytics.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/current/reference/htmlsinge/index.html#actuator.metrics.export.dynatrace
- name: Influx
id: influx
groupId: io.micrometer
artifactId: micrometer-registry-influx
scope: runtime
starter: false
description: Publish Micrometer metrics to InfluxDB, a dimensional time-series server that support real-time stream processing of data.
links:
- rel: reference
href: https://docs.spring.io/spring-boot/docs/{bootVersion}/reference/htmlsinge/index.html#actuator.metrics.export.influx
- name: Graphite