-
Notifications
You must be signed in to change notification settings - Fork 41.1k
/
Copy pathanchor-rewrite.properties
3107 lines (2306 loc) · 87.7 KB
/
anchor-rewrite.properties
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
#
# Migrations
#
#---------------------------------------------------
#
# Spring Boot <= 2.4 Migrations
#
#---------------------------------------------------
# (index.adoc)
# 1 = Spring Boot Reference Documentation
spring-boot-reference-documentation=\
index
# (legal.adoc)
# 1 = Legal
legal=\
legal
# (documentation.adoc)
# 1 = Spring Boot Documentation
boot-documentation=\
documentation
# 2 == About the Documentation
boot-documentation-about=\
documentation.about
# 2 == Getting Help
boot-documentation-getting-help=\
documentation.getting-help
# 2 == Upgrading From an Earlier Version
boot-documentation-upgrading=\
documentation.upgrading
# 2 == First Steps
boot-documentation-first-steps=\
documentation.first-steps
# 2 == Working with Spring Boot
boot-documentation-workingwith=\
documentation.using
# 2 == Learning About Spring Boot Features
boot-documentation-learning=\
documentation.features
# 2 == Moving to Production
boot-documentation-production=\
documentation.actuator
# 2 == Advanced Topics
boot-documentation-advanced=\
documentation.advanced
# (getting-started.adoc)
# 1 = Getting Started
getting-started=\
getting-started
# 2 == Introducing Spring Boot
getting-started-introducing-spring-boot=\
getting-started.introducing-spring-boot
# 2 == System Requirements
getting-started-system-requirements=\
getting-started.system-requirements
# 3 === Servlet Containers
getting-started-system-requirements-servlet-containers=\
getting-started.system-requirements.servlet-containers
# 2 == Installing Spring Boot
getting-started-installing-spring-boot=\
getting-started.installing
# 3 === Installation Instructions for the Java Developer
getting-started-installation-instructions-for-java=\
getting-started.installing.java
# 4 ==== Maven Installation
getting-started-maven-installation=\
getting-started.installing.java.maven
# 4 ==== Gradle Installation
getting-started-gradle-installation=\
getting-started.installing.java.gradle
# 3 === Installing the Spring Boot CLI
getting-started-installing-the-cli=\
getting-started.installing.cli
# 4 ==== Manual Installation
getting-started-manual-cli-installation=\
getting-started.installing.cli.manual-installation
# 4 ==== Installation with SDKMAN!
getting-started-sdkman-cli-installation=\
getting-started.installing.cli.sdkman
# 4 ==== OSX Homebrew Installation
getting-started-homebrew-cli-installation=\
getting-started.installing.cli.homebrew
# 4 ==== MacPorts Installation
getting-started-macports-cli-installation=\
getting-started.installing.cli.macports
# 4 ==== Command-line Completion
getting-started-cli-command-line-completion=\
getting-started.installing.cli.completion
# 4 ==== Windows Scoop Installation
getting-started-scoop-cli-installation=\
getting-started.installing.cli.scoop
# 4 ==== Quick-start Spring CLI Example
getting-started-cli-example=\
getting-started.installing.cli.quick-start
# 3 === Upgrading from an Earlier Version of Spring Boot
getting-started-upgrading-from-an-earlier-version=\
getting-started.installing.upgrading
# 2 == Developing Your First Spring Boot Application
getting-started-first-application=\
getting-started.first-application
# 3 === Creating the POM
getting-started-first-application-pom=\
getting-started.first-application.pom
# 3 === Adding Classpath Dependencies
getting-started-first-application-dependencies=\
getting-started.first-application.dependencies
# 3 === Writing the Code
getting-started-first-application-code=\
getting-started.first-application.code
# 4 ==== The @RestController and @RequestMapping Annotations
getting-started-first-application-annotations=\
getting-started.first-application.code.mvc-annotations
# 4 ==== The @EnableAutoConfiguration Annotation
getting-started-first-application-auto-configuration=\
getting-started.first-application.code.enable-auto-configuration
# 4 ==== The "`main`" Method
getting-started-first-application-main-method=\
getting-started.first-application.code.main-method
# 3 === Running the Example
getting-started-first-application-run=\
getting-started.first-application.run
# 3 === Creating an Executable Jar
getting-started-first-application-executable-jar=\
getting-started.first-application.executable-jar
# 2 == What to Read Next
getting-started-whats-next=\
getting-started.whats-next
# (using.adoc)
# 1 = Using Spring Boot
using-boot=\
using
# 2 == Build Systems
using-boot-build-systems=\
using.build-systems
# 3 === Dependency Management
using-boot-dependency-management=\
using.build-systems.dependency-management
# 3 === Maven
using-boot-maven=\
using.build-systems.maven
# 3 === Gradle
using-boot-gradle=\
using.build-systems.gradle
# 3 === Ant
using-boot-ant=\
using.build-systems.ant
# 3 === Starters
using-boot-starter=\
using.build-systems.starters
# 2 == Structuring Your Code
using-boot-structuring-your-code=\
using.structuring-your-code
# 3 === Using the "`default`" Package
using-boot-using-the-default-package=\
using.structuring-your-code.using-the-default-package
# 3 === Locating the Main Application Class
using-boot-locating-the-main-class=\
using.structuring-your-code.locating-the-main-class
# 2 == Configuration Classes
using-boot-configuration-classes=\
using.configuration-classes
# 3 === Importing Additional Configuration Classes
using-boot-importing-configuration=\
using.configuration-classes.importing-additional-configuration
# 3 === Importing XML Configuration
using-boot-importing-xml-configuration=\
using.configuration-classes.importing-xml-configuration
# 2 == Auto-configuration
using-boot-auto-configuration=\
using.auto-configuration
# 3 === Gradually Replacing Auto-configuration
using-boot-replacing-auto-configuration=\
using.auto-configuration.replacing
# 3 === Disabling Specific Auto-configuration Classes
using-boot-disabling-specific-auto-configuration=\
using.auto-configuration.disabling-specific
# 2 == Spring Beans and Dependency Injection
using-boot-spring-beans-and-dependency-injection=\
using.spring-beans-and-dependency-injection
# 2 == Using the @SpringBootApplication Annotation
using-boot-using-springbootapplication-annotation=\
using.using-the-springbootapplication-annotation
# 2 == Running Your Application
using-boot-running-your-application=\
using.running-your-application
# 3 === Running from an IDE
using-boot-running-from-an-ide=\
using.running-your-application.from-an-ide
# 3 === Running as a Packaged Application
using-boot-running-as-a-packaged-application=\
using.running-your-application.as-a-packaged-application
# 3 === Using the Maven Plugin
using-boot-running-with-the-maven-plugin=\
using.running-your-application.with-the-maven-plugin
# 3 === Using the Gradle Plugin
using-boot-running-with-the-gradle-plugin=\
using.running-your-application.with-the-gradle-plugin
# 3 === Hot Swapping
using-boot-hot-swapping=\
using.running-your-application.hot-swapping
# 2 == Developer Tools
using-boot-devtools=\
using.devtools
# 3 === Property Defaults
using-boot-devtools-property-defaults=\
using.devtools.property-defaults
# 3 === Automatic Restart
using-boot-devtools-restart=\
using.devtools.restart
# 4 ==== Logging changes in condition evaluation
using-boot-devtools-restart-logging-condition-delta=\
using.devtools.restart.logging-condition-delta
# 4 ==== Excluding Resources
using-boot-devtools-restart-exclude=\
using.devtools.restart.excluding-resources
# 4 ==== Watching Additional Paths
using-boot-devtools-restart-additional-paths=\
using.devtools.restart.watching-additional-paths
# 4 ==== Disabling Restart
using-boot-devtools-restart-disable=\
using.devtools.restart.disable
# 4 ==== Using a Trigger File
using-boot-devtools-restart-triggerfile=\
using.devtools.restart.triggerfile
# 4 ==== Customizing the Restart Classloader
using-boot-devtools-customizing-classload=\
using.devtools.restart.customizing-the-classload
# 4 ==== Known Limitations
using-boot-devtools-known-restart-limitations=\
using.devtools.restart.limitations
# 3 === LiveReload
using-boot-devtools-livereload=\
using.devtools.livereload
# 3 === Global Settings
using-boot-devtools-globalsettings=\
using.devtools.globalsettings
# 4 ==== Configuring File System Watcher
configuring-file-system-watcher=\
using.devtools.globalsettings.configuring-file-system-watcher
# 3 === Remote Applications
using-boot-devtools-remote=\
using.devtools.remote-applications
# 4 ==== Running the Remote Client Application
running-remote-client-application=\
using.devtools.remote-applications.client
# 4 ==== Remote Update
using-boot-devtools-remote-update=\
using.devtools.remote-applications.update
# 2 == Packaging Your Application for Production
using-boot-packaging-for-production=\
using.packaging-for-production
# 2 == What to Read Next
using-boot-whats-next=\
using.whats-next
# (features.adoc)
# 1 = Spring Boot Features
boot-features=\
features
# 2 == SpringApplication
boot-features-spring-application=\
features.spring-application
# 3 === Startup Failure
boot-features-startup-failure=\
features.spring-application.startup-failure
# 3 === Lazy Initialization
boot-features-lazy-initialization=\
features.spring-application.lazy-initialization
# 3 === Customizing the Banner
boot-features-banner=\
features.spring-application.banner
# 3 === Customizing SpringApplication
boot-features-customizing-spring-application=\
features.spring-application.customizing-spring-application
# 3 === Fluent Builder API
boot-features-fluent-builder-api=\
features.spring-application.fluent-builder-api
# 3 === Application Availability
boot-features-application-availability=\
features.spring-application.application-availability
# 4 ==== Liveness State
boot-features-application-availability-liveness-state=\
features.spring-application.application-availability.liveness
# 4 ==== Readiness State
boot-features-application-availability-readiness-state=\
features.spring-application.application-availability.readiness
# 4 ==== Managing the Application Availability State
boot-features-application-availability-managing=\
features.spring-application.application-availability.managing
# 3 === Application Events and Listeners
boot-features-application-events-and-listeners=\
features.spring-application.application-events-and-listeners
# 3 === Web Environment
boot-features-web-environment=\
features.spring-application.web-environment
# 3 === Accessing Application Arguments
boot-features-application-arguments=\
features.spring-application.application-arguments
# 3 === Using the ApplicationRunner or CommandLineRunner
boot-features-command-line-runner=\
features.spring-application.command-line-runner
# 3 === Application Exit
boot-features-application-exit=\
features.spring-application.application-exit
# 3 === Admin Features
boot-features-application-admin=\
features.spring-application.admin
# 3 === Application Startup tracking
boot-features-application-startup-tracking=\
features.spring-application.startup-tracking
# 2 == Externalized Configuration
boot-features-external-config=\
features.external-config
# 3 === Accessing Command Line Properties
boot-features-external-config-command-line-args=\
features.external-config.command-line-args
# 3 === JSON Application Properties
boot-features-external-config-application-json=\
features.external-config.application-json
# 3 === External Application Properties
boot-features-external-config-files=\
features.external-config.files
boot-features-external-config-application-property-files=\
features.external-config.files
# 4 ==== Optional Locations
boot-features-external-config-optional-prefix=\
features.external-config.files.optional-prefix
# 4 ==== Wildcard Locations
boot-features-external-config-files-wildcards=\
features.external-config.files.wildcard-locations
# 4 ==== Profile Specific Files
boot-features-external-config-files-profile-specific=\
features.external-config.files.profile-specific
# 4 ==== Importing Additional Data
boot-features-external-config-files-importing=\
features.external-config.files.importing
# 4 ==== Importing Extensionless Files
boot-features-external-config-files-importing-extensionless=\
features.external-config.file.importing-extensionless
# 4 ==== Using Configuration Trees
boot-features-external-config-files-configtree=\
features.external-config.files.configtree
# 4 ==== Property Placeholders
boot-features-external-config-placeholders-in-properties=\
features.external-config.files.property-placeholders
# 4 ==== Working with Multi-Document Files
boot-features-external-config-files-multi-document=\
features.external-config.files.multi-document
# 4 ==== Activation Properties
boot-features-external-config-file-activation-properties=\
features.external-config.files.activation-properties
# 3 === Encrypting Properties
boot-features-encrypting-properties=\
features.external-config.encrypting
# 3 === Working with YAML
boot-features-external-config-yaml=\
features.external-config.yaml
# 4 ==== Mapping YAML to Properties
boot-features-external-config-yaml-to-properties=\
features.external-config.yaml.mapping-to-properties
# 4 ==== Directly Loading YAML
boot-features-external-config-exposing-yaml-to-spring=\
features.external-config.yaml.directly-loading
boot-features-external-config-loading-yaml=\
features.external-config.yaml.directly-loading
# 3 === Configuring Random Values
boot-features-external-config-random-values=\
features.external-config.random-values
# 3 === Configuring System Environment Properties
boot-features-external-config-system-environment=\
features.external-config.system-environment
# 3 === Type-safe Configuration Properties
boot-features-external-config-typesafe-configuration-properties=\
features.external-config.typesafe-configuration-properties
# 4 ==== JavaBean properties binding
boot-features-external-config-java-bean-binding=\
features.external-config.typesafe-configuration-properties.java-bean-binding
# 4 ==== Constructor binding
boot-features-external-config-constructor-binding=\
features.external-config.typesafe-configuration-properties.constructor-binding
# 4 ==== Enabling @ConfigurationProperties-annotated types
boot-features-external-config-enabling=\
features.external-config.typesafe-configuration-properties.enabling-annotated-types
# 4 ==== Using @ConfigurationProperties-annotated types
boot-features-external-config-using=\
features.external-config.typesafe-configuration-properties.using-annotated-types
# 4 ==== Third-party Configuration
boot-features-external-config-3rd-party-configuration=\
features.external-config.typesafe-configuration-properties.3rd-party-configuration
# 4 ==== Relaxed Binding
boot-features-external-config-relaxed-binding=\
features.external-config.typesafe-configuration-properties.relaxed-binding
# 5 ===== Binding Maps
boot-features-external-config-relaxed-binding-maps=\
features.external-config.typesafe-configuration-properties.relaxed-binding.maps
# 5 ===== Binding from Environment Variables
boot-features-external-config-relaxed-binding-from-environment-variables=\
features.external-config.typesafe-configuration-properties.relaxed-binding.environment-variables
# 4 ==== Merging Complex Types
boot-features-external-config-complex-type-merge=\
features.external-config.typesafe-configuration-properties.merging-complex-types
# 4 ==== Properties Conversion
boot-features-external-config-conversion=\
features.external-config.typesafe-configuration-properties.conversion
# 5 ===== Converting Durations
boot-features-external-config-conversion-duration=\
features.external-config.typesafe-configuration-properties.conversion.durations
# 5 ===== Converting periods
boot-features-external-config-conversion-period=\
features.external-config.typesafe-configuration-properties.conversion.periods
# 5 ===== Converting Data Sizes
boot-features-external-config-conversion-datasize=\
features.external-config.typesafe-configuration-properties.conversion.data-sizes
# 4 ==== @ConfigurationProperties Validation
boot-features-external-config-validation=\
features.external-config.typesafe-configuration-properties.validation
# 4 ==== @ConfigurationProperties vs. @Value
boot-features-external-config-vs-value=\
features.external-config.typesafe-configuration-properties.vs-value-annotation
# 2 == Profiles
boot-features-profiles=\
features.profiles
# 3 === Adding Active Profiles
boot-features-adding-active-profiles=\
features.profiles.adding-active-profiles
# 3 === Profile Groups
boot-features-profiles-groups=\
features.profiles.groups
# 3 === Programmatically Setting Profiles
boot-features-programmatically-setting-profiles=\
features.profiles.programmatically-setting-profiles
# 3 === Profile-specific Configuration Files
boot-features-profile-specific-configuration=\
features.profiles.profile-specific-configuration-files
# 2 == Logging
boot-features-logging=\
features.logging
# 3 === Log Format
boot-features-logging-format=\
features.logging.log-format
# 3 === Console Output
boot-features-logging-console-output=\
features.logging.console-output
# 4 ==== Color-coded Output
boot-features-logging-color-coded-output=\
features.logging.console-output.color-coded
# 3 === File Output
boot-features-logging-file-output=\
features.logging.file-output
# 3 === File Rotation
boot-features-logging-file-rotation=\
features.logging.file-rotation
# 3 === Log Levels
boot-features-custom-log-levels=\
features.logging.log-levels
# 3 === Log Groups
boot-features-custom-log-groups=\
features.logging.log-groups
# 3 === Using a Log Shutdown Hook
boot-features-log-shutdown-hook=\
features.logging.shutdown-hook
# 3 === Custom Log Configuration
boot-features-custom-log-configuration=\
features.logging.custom-log-configuration
# 3 === Logback Extensions
boot-features-logback-extensions=\
features.logging.logback-extensions
# 4 ==== Profile-specific Configuration
boot-features-logback-extensions-profile-specific=\
features.logging.logback-extensions.profile-specific
# 4 ==== Environment Properties
boot-features-logback-environment-properties=\
features.logging.logback-extensions.environment-properties
# 2 == Internationalization
boot-features-internationalization=\
features.internationalization
# 2 == JSON
boot-features-json=\
features.json
# 3 === Jackson
boot-features-json-jackson=\
features.json.jackson
# 3 === Gson
boot-features-json-gson=\
features.json.gson
# 3 === JSON-B
boot-features-json-json-b=\
features.json.json-b
# 2 == Developing Web Applications
boot-features-developing-web-applications=\
features.developing-web-applications
# 3 === The "`Spring Web MVC Framework`"
boot-features-spring-mvc=\
features.developing-web-applications.spring-mvc
# 4 ==== Spring MVC Auto-configuration
boot-features-spring-mvc-auto-configuration=\
features.developing-web-applications.spring-mvc.auto-configuration
# 4 ==== HttpMessageConverters
boot-features-spring-mvc-message-converters=\
features.developing-web-applications.spring-mvc.message-converters
# 4 ==== Custom JSON Serializers and Deserializers
boot-features-json-components=\
features.developing-web-applications.spring-mvc.json
# 4 ==== MessageCodesResolver
boot-features-spring-message-codes=\
features.developing-web-applications.spring-mvc.message-codes
# 4 ==== Static Content
boot-features-spring-mvc-static-content=\
features.developing-web-applications.spring-mvc.static-content
# 4 ==== Welcome Page
boot-features-spring-mvc-welcome-page=\
features.developing-web-applications.spring-mvc.welcome-page
# 4 ==== Path Matching and Content Negotiation
boot-features-spring-mvc-pathmatch=\
features.developing-web-applications.spring-mvc.content-negotiation
# 4 ==== ConfigurableWebBindingInitializer
boot-features-spring-mvc-web-binding-initializer=\
features.developing-web-applications.spring-mvc.binding-initializer
# 4 ==== Template Engines
boot-features-spring-mvc-template-engines=\
features.developing-web-applications.spring-mvc.template-engines
# 4 ==== Error Handling
boot-features-error-handling=\
features.developing-web-applications.spring-mvc.error-handling
# 5 ===== Custom Error Pages
boot-features-error-handling-custom-error-pages=\
features.developing-web-applications.spring-mvc.error-handling.error-pages
# 5 ===== Mapping Error Pages outside of Spring MVC
boot-features-error-handling-mapping-error-pages-without-mvc=\
features.developing-web-applications.spring-mvc.error-handling.error-pages-without-spring-mvc
# 5 ===== Error handling in a war deployment
boot-features-error-handling-war-deployment=\
features.developing-web-applications.spring-mvc.error-handling.in-a-war-deployment
# 4 ==== Spring HATEOAS
boot-features-spring-hateoas=\
features.developing-web-applications.spring-mvc.spring-hateoas
# 4 ==== CORS Support
boot-features-cors=\
features.developing-web-applications.spring-mvc.cors
# 3 === The "`Spring WebFlux Framework`"
boot-features-webflux=\
features.developing-web-applications.spring-webflux
# 4 ==== Spring WebFlux Auto-configuration
boot-features-webflux-auto-configuration=\
features.developing-web-applications.spring-webflux.auto-configuration
# 4 ==== HTTP Codecs with HttpMessageReaders and HttpMessageWriters
boot-features-webflux-httpcodecs=\
features.developing-web-applications.spring-webflux.httpcodecs
# 4 ==== Static Content
boot-features-webflux-static-content=\
features.developing-web-applications.spring-webflux.static-content
# 4 ==== Welcome Page
boot-features-webflux-welcome-page=\
features.developing-web-applications.spring-webflux.welcome-page
# 4 ==== Template Engines
boot-features-webflux-template-engines=\
features.developing-web-applications.spring-webflux.template-engines
# 4 ==== Error Handling
boot-features-webflux-error-handling=\
features.developing-web-applications.spring-webflux.error-handling
# 5 ===== Custom Error Pages
boot-features-webflux-error-handling-custom-error-pages=\
features.developing-web-applications.spring-webflux.error-handling.error-pages
# 4 ==== Web Filters
boot-features-webflux-web-filters=\
features.developing-web-applications.spring-webflux.web-filters
# 3 === JAX-RS and Jersey
boot-features-jersey=\
features.developing-web-applications.jersey
# 3 === Embedded Servlet Container Support
boot-features-embedded-container=\
features.developing-web-applications.embedded-container
# 4 ==== Servlets, Filters, and listeners
boot-features-embedded-container-servlets-filters-listeners=\
features.developing-web-applications.embedded-container.servlets-filters-listeners
# 5 ===== Registering Servlets, Filters, and Listeners as Spring Beans
boot-features-embedded-container-servlets-filters-listeners-beans=\
features.developing-web-applications.embedded-container.servlets-filters-listeners.beans
# 4 ==== Servlet Context Initialization
boot-features-embedded-container-context-initializer=\
features.developing-web-applications.embedded-container.context-initializer
# 5 ===== Scanning for Servlets, Filters, and listeners
boot-features-embedded-container-servlets-filters-listeners-scanning=\
features.developing-web-applications.embedded-container.context-initializer.scanning
# 4 ==== The ServletWebServerApplicationContext
boot-features-embedded-container-application-context=\
features.developing-web-applications.embedded-container.application-context
# 4 ==== Customizing Embedded Servlet Containers
boot-features-customizing-embedded-containers=\
features.developing-web-applications.embedded-container.customizing
# 5 ===== Programmatic Customization
boot-features-programmatic-embedded-container-customization=\
features.developing-web-applications.embedded-container.customizing.programmatic
# 5 ===== Customizing ConfigurableServletWebServerFactory Directly
boot-features-customizing-configurableservletwebserverfactory-directly=\
features.developing-web-applications.embedded-container.customizing.direct
# 4 ==== JSP Limitations
boot-features-jsp-limitations=\
features.developing-web-applications.embedded-container.jsp-limitations
# 3 === Embedded Reactive Server Support
boot-features-reactive-server=\
features.developing-web-applications.reactive-server
# 3 === Reactive Server Resources Configuration
boot-features-reactive-server-resources=\
features.developing-web-applications.reactive-server-resources-configuration
# 2 == Graceful shutdown
boot-features-graceful-shutdown=\
features.graceful-shutdown
# 2 == RSocket
boot-features-rsocket=\
features.rsocket
# 3 === RSocket Strategies Auto-configuration
boot-features-rsocket-strategies-auto-configuration=\
features.rsocket.strategies-auto-configuration
# 3 === RSocket server Auto-configuration
boot-features-rsocket-server-auto-configuration=\
features.rsocket.server-auto-configuration
# 3 === Spring Messaging RSocket support
boot-features-rsocket-messaging=\
features.rsocket.messaging
# 3 === Calling RSocket Services with RSocketRequester
boot-features-rsocket-requester=\
features.rsocket.requester
# 2 == Security
boot-features-security=\
features.security
# 3 === MVC Security
boot-features-security-mvc=\
features.security.spring-mvc
# 3 === WebFlux Security
boot-features-security-webflux=\
features.security.spring-webflux
# 3 === OAuth2
boot-features-security-oauth2=\
features.security.oauth2
# 4 ==== Client
boot-features-security-oauth2-client=\
features.security.oauth2.client
# 5 ===== OAuth2 client registration for common providers
boot-features-security-oauth2-common-providers=\
features.security.oauth2.client.common-providers
# 4 ==== Resource Server
boot-features-security-oauth2-server=\
features.security.oauth2.server
# 4 ==== Authorization Server
boot-features-security-authorization-server=\
features.security.oauth2.authorization-server
# 3 === SAML 2.0
boot-features-security-saml=\
features.security.saml2
# 4 ==== Relying Party
boot-features-security-saml2-relying-party=\
features.security.saml2.relying-party
# 3 === Actuator Security
boot-features-security-actuator=\
features.security.actuator
# 4 ==== Cross Site Request Forgery Protection
boot-features-security-csrf=\
features.security.actuator.csrf
# 2 == Working with SQL Databases
boot-features-sql=\
features.sql
# 3 === Configure a DataSource
boot-features-configure-datasource=\
features.sql.datasource
# 4 ==== Embedded Database Support
boot-features-embedded-database-support=\
features.sql.datasource.embedded
# 4 ==== Connection to a Production Database
boot-features-connect-to-production-database=\
features.sql.datasource.production
# 4 ==== DataSource Configuration
boot-features-connect-to-production-database-configuration=\
features.sql.datasource.configuration
# 4 ==== Supported Connection Pools
boot-features-connect-to-production-database-connection-pool=\
features.sql.datasource.connection-pool
# 4 ==== Connection to a JNDI DataSource
boot-features-connecting-to-a-jndi-datasource=\
features.sql.datasource.jndi
# 3 === Using JdbcTemplate
boot-features-using-jdbc-template=\
features.sql.jdbc-template
# 3 === JPA and Spring Data JPA
boot-features-jpa-and-spring-data=\
features.sql.jpa-and-spring-data
# 4 ==== Entity Classes
boot-features-entity-classes=\
features.sql.jpa-and-spring-data.entity-classes
# 4 ==== Spring Data JPA Repositories
boot-features-spring-data-jpa-repositories=\
features.sql.jpa-and-spring-data.repositories
# 4 ==== Creating and Dropping JPA Databases
boot-features-creating-and-dropping-jpa-databases=\
features.sql.jpa-and-spring-data.creating-and-dropping
# 4 ==== Open EntityManager in View
boot-features-jpa-in-web-environment=\
features.sql.jpa-and-spring-data.open-entity-manager-in-view
# 3 === Spring Data JDBC
boot-features-data-jdbc=\
features.sql.jdbc
# 3 === Using H2's Web Console
boot-features-sql-h2-console=\
features.sql.h2-web-console
# 4 ==== Changing the H2 Console's Path
boot-features-sql-h2-console-custom-path=\
features.sql.h2-web-console.custom-path
# 3 === Using jOOQ
boot-features-jooq=\
features.sql.jooq
# 4 ==== Code Generation
boot-features-jooq-codegen=\
features.sql.jooq.codegen
# 4 ==== Using DSLContext
boot-features-jooq-dslcontext=\
features.sql.jooq.dslcontext
# 4 ==== jOOQ SQL Dialect
boot-features-jooq-sqldialect=\
features.sql.jooq.sqldialect
# 4 ==== Customizing jOOQ
boot-features-jooq-customizing=\
features.sql.jooq.customizing
# 3 === Using R2DBC
boot-features-r2dbc=\
features.sql.r2dbc
# 4 ==== Embedded Database Support
boot-features-r2dbc-embedded-database=\
features.sql.r2dbc.embedded
# 4 ==== Using DatabaseClient
boot-features-r2dbc-using-database-client=\
features.sql.r2dbc.using-database-client
# 4 ==== Spring Data R2DBC Repositories
boot-features-spring-data-r2dbc-repositories=\
features.sql.r2dbc.repositories
# 2 == Working with NoSQL Technologies
boot-features-nosql=\
features.nosql
# 3 === Redis
boot-features-redis=\
features.nosql.redis
# 4 ==== Connecting to Redis
boot-features-connecting-to-redis=\
features.nosql.redis.connecting