Michael J. Simons
18230d7f23
Fix several broken links to sources
...
Closes gh-9042
9 years ago
Phillip Webb
72813a47e7
Polish
9 years ago
Brian Clozel
3cc0f7b70d
Document embedded web server refactoring
...
Closes gh-8532
9 years ago
Michael J. Simons
4a58e87201
Remove references to *EmbeddedServletContainerFactory
...
See gh-8532
9 years ago
Michael J. Simons
0436070b98
Fix docs howto customize the embedded webserver
...
This reflects the changes from 67556ba8 .
See gh-8532.
9 years ago
Brian Clozel
f2c63706da
Change default file extension for Mustache templates
...
This commit changes the default file extension for Mustache templates,
from `.html` to `.mustache`, which is the file extension used in the
official reference documentation and by most IDE plugins.
Fixes gh-8997
9 years ago
Brian Clozel
4d5dcca553
Add Thymeleaf auto-configuration for WebFlux
...
Thymeleaf 3.0 implements the Spring 5.0 view infrastructure for WebMVC
and the new WebFlux framework. This commit adds auto-configuration for
the WebFlux support.
In that process, the configuration property for `spring.thymeleaf` has
been changed to add `spring.thymeleaf.servlet` and
`spring.thymeleaf.reactive` for MVC/WebFlux specific properties.
Now that the `spring-boot-starter-thymeleaf` does not only support
Spring MVC, the transitive dependency on `spring-boot-starter-web` is
removed from it.
Fixes gh-8124
9 years ago
Phillip Webb
45dd9f7144
Polish
9 years ago
Vedran Pavic
33dd9d6d84
Remove Spring Session Mongo support
...
Remove auto-configuration support for Spring Session Mongo since it is
no longer supported in Spring Session 2.0.
See gh-9011
9 years ago
Stephane Nicoll
800eb010b1
Change the default JDBC connection pool to Hikari
...
Closes gh-6013
9 years ago
Stephane Nicoll
df388aaaf9
Polish doc
9 years ago
Stephane Nicoll
e9abe3fcca
Polish "Do not expose `exception` error attribute by default"
...
Closes gh-8971
9 years ago
Vedran Pavic
afe0c6f432
Do not expose `exception` error attribute by default
...
See gh-8971
9 years ago
Stephane Nicoll
f5db75792e
Add support for configuring Jetty's request log via the environment
...
Closes gh-8819
9 years ago
olivier lamy
ce892a06e4
Add support for configuring Jetty's request log via the environment
...
See gh-8819
9 years ago
Stephane Nicoll
47037d5227
Polish "Add reactive support for Spring Data Cassandra"
...
Closes gh-8568
9 years ago
Eddú Meléndez
abd35f041b
Add reactive support for Spring Data Cassandra
...
See gh-8568
9 years ago
Stephane Nicoll
3e60ec6cb4
Polish "Add database initializer for Spring Integration"
...
Closes gh-8881
9 years ago
Vedran Pavic
48bc29c77a
Add database initializer for Spring Integration
...
See gh-8881
9 years ago
Stephane Nicoll
144868a3ce
Polish "Support of Neo4j auto-index configuration"
...
Closes gh-8843
9 years ago
Aurélien Leboulanger
779733c379
Support of Neo4j auto-index configuration
...
See gh-8843
9 years ago
Spring Buildmaster
9768b0a8c2
Next Development Version
9 years ago
Spring Buildmaster
d719d2cbbc
Next Development Version
9 years ago
Dave Syer
14638e67bc
Extended PropertiesLauncher class location logic
...
Update `PropertiesLauncher` so that classes can be loaded outside of
`BOOT-INF/classes`. You can use a subdirectory, or the root directory
of an external jar (but not the parent archive to avoid issues
with agents and awkward delegation models).
Fixes gh-8480
Closes gh-8486
9 years ago
Madhura Bhave
2a7fd5011d
Clarify docs on actuator security
...
Closes gh-8646
9 years ago
Madhura Bhave
115b369633
Update documentation with new default prefix for actuators
...
Closes gh-6886
9 years ago
Stephane Nicoll
8c21e16cf1
Add reference to Infinispan starter
...
Closes gh-8592
9 years ago
Stephane Nicoll
04ee374e7f
Polish "Add slice test annotation for LDAP"
...
Closes gh-8536
9 years ago
Eddú Meléndez
2830bef95c
Add slice test annotation for LDAP
...
This commit adds new annotation `@DataLdapTest` which provides test
infrastructure for LDAP. By default, embedded ldap server is initialized
if available.
See gh-8536
9 years ago
Stephane Nicoll
50331102b7
Review configuration properties appendix
9 years ago
Stephane Nicoll
4fd9a8c468
Add missing spring.datasource.xa properties in the appendix
...
Closes gh-8895
9 years ago
Stephane Nicoll
584b61ecc1
Remove deprecated property
9 years ago
Stephane Nicoll
eeed3a841c
Review configuration properties appendix
9 years ago
Stephane Nicoll
072160863a
Add a note about transactional tests and `webEnvironment`
...
Closes gh-8232
9 years ago
Stephane Nicoll
40f4c89602
Document list merge restrictions with YAML
...
Closes gh-6911
9 years ago
Phillip Webb
758ddcd420
Polish
9 years ago
Stephane Nicoll
2ef318c00d
Polish "Add the ability to disable the trace filter"
...
Closes gh-8650
9 years ago
Johnny Lim
0cd1285aa4
Polish
...
Closes gh-8879
9 years ago
Stephane Nicoll
404bb2d171
Polish
...
See gh-8879
9 years ago
Stephane Nicoll
0a55e3e736
Polish "Clarify edge case docs on ConditionalOnClass"
...
Closes gh-8185
9 years ago
Phillip Verheyden
08f8219248
Clarify edge case docs on ConditionalOnClass
...
When used as a meta-annotation the value() attribute of
@ConditionalOnClass will fail silently resulting in the @Conditional
nature of the annotation being ignored.
See gh-8185
9 years ago
Stephane Nicoll
a8860ba7e9
Clarify use of `@TestConfiguration`
...
As `@TestComponent` is an implementation detail at this point really, this
commit removes any reference to it from the doc.
Closes gh-8421
9 years ago
Stephane Nicoll
fd53945fe0
Polish "Document HTTP response format of health endpoint"
...
Closes gh-8703
9 years ago
Luis Fernando Pollo
1fa1ed2b28
Document HTTP response format of health endpoint
...
Add HTTP response format details for health endpoint, including default
status codes and sample responses.
See gh-8703
9 years ago
Stephane Nicoll
fffb53ccf5
Fix neo4j embedded documentation
...
The neo4j embedded driver no longer embeds the neo4j kernel and users are
expected to add that dependency manually. We don't provide dependency
management for any of them so this commit updates the documentation to
refers to the official documentation.
Closes gh-8567
9 years ago
Johnny Lim
8d921d49aa
Fix typos in new Gradle plugin
...
Closes gh-8818
9 years ago
Phillip Webb
ad38776de3
Polish
9 years ago
Phillip Webb
ddcb5ee328
Polish
9 years ago
Andy Wilkinson
9374020b0e
Stop -> from being replaced with → as the latter renders as # in PDF
...
Closes gh-8575
9 years ago
Andy Wilkinson
01166381a0
Provide separate documentation (API and reference) for Gradle plugin
9 years ago