Spring Buildmaster
63e6a25097
Next development version
2014-12-10 18:06:30 -08:00
Spring Buildmaster
1a788c1741
Next development version
2014-12-10 16:35:50 -08:00
John
62d3f73e24
Fix "heath" misspellings
2014-12-10 15:25:07 -08:00
Phillip Webb
a27217ae43
Provide a way to opt-in to endpoint enablement
...
Update AbstractEndpoint so that the `enable` property is optional and
when it not specified the `endpoints.enabled` property will be used.
This allows users to switch the way that endpoints are enabled. Rather
than opting-out specific endpoint enablement the `endpoints.enabled`
property can be set to `false` and specific endpoints can be opted-in.
Fixes gh-2102
2014-12-10 12:39:34 -08:00
Phillip Webb
3e2433c842
Update health endpoint sensitive flag in docs
2014-12-10 12:39:34 -08:00
John
3343cd4c90
Fix typo in documentation
2014-12-10 07:49:13 -05:00
Phillip Webb
e772174019
Update reference documentation for Spring Boot 1.2
...
Various updates and polish to prepare the reference documentation for
Spring Boot 1.2.
Fixes gh-1903
2014-12-10 00:56:41 -08:00
Phillip Webb
a0ce04ac4b
Drop Cloudbees PaaS documentation
...
Remove the Cloudbees section since they are shutting down their PaaS.
Fixes gh-2105
2014-12-10 00:56:37 -08:00
Phillip Webb
e5295c0142
Update HealthInformation reference documentation
...
Clean and align with changes in Spring Boot 1.2
Fixes gh-2104
2014-12-10 00:51:30 -08:00
Phillip Webb
71fd3b36b4
Update "logging" reference documentation
...
Update the logging section to reflect changes in Spring Boot 1.2
Fixes gh-1790
2014-12-10 00:50:37 -08:00
Phillip Webb
119a5656e2
Update SpringBootServletInitializer ref docs
...
Add a hint to show that the `configure` method is now optional.
Fixes gh-2074
2014-12-10 00:49:31 -08:00
Phillip Webb
400b664098
Update "banner" reference documentation
...
Fixes gh-2103
2014-12-10 00:48:29 -08:00
Stephane Nicoll
1da0deeef6
Add missing keys in appendix
2014-12-09 18:04:47 +01:00
Phillip Webb
083f9757cd
Merge branch '1.1.x'
...
Conflicts:
spring-boot/src/main/java/org/springframework/boot/context/embedded/jetty/JettyEmbeddedServletContainerFactory.java
2014-12-08 11:16:09 -08:00
Phillip Webb
22e8478aa3
Cross-reference "Create a deployable war" how-to
...
Add a tip for both the Maven and Gradle "Packaging executable jar and
war files" section referring to the how-to.
Fixes gh-2086
2014-12-08 10:52:54 -08:00
Phillip Webb
b651090fcd
Document how-to for Weblogic deployment
...
Fixes gh-2078
2014-12-07 20:11:48 -08:00
Phillip Webb
af643e2f54
Merge branch '1.1.x'
...
Conflicts:
spring-boot/src/main/java/org/springframework/boot/logging/LoggingApplicationListener.java
2014-12-05 10:25:30 -08:00
kakawait
f65c7dbeb3
Update 'flyway.locations' appendix documentation
...
Replace `classpath:db/migrations` with `classpath:db/migrations`.
Fixes gh-2063
2014-12-05 10:23:54 -08:00
Phillip Webb
211f20b9c6
Add setIgnoreDefaultModelOnRedirect support
...
Add a `spring.mvc.set-ignore-default-model-on-redirect` property to
allow RequestMappingHandlerAdapter.setIgnoreDefaultModelOnRedirect to
be easily customized and change the default value to 'true'.
Fixes gh-2018
2014-12-03 11:31:09 -08:00
Stephane Nicoll
509201907c
Polish default value for arrays
...
See gh-1996
2014-12-03 17:32:00 +01:00
Stephane Nicoll
f821fdfffa
Fix typo
2014-12-03 17:21:56 +01:00
Stephane Nicoll
d9ca0869b5
Fix required Spring Framework version
2014-12-03 09:57:22 +01:00
Stephane Nicoll
4e1c259645
Add requirements documentation section
...
Fixes gh-1439
2014-12-02 19:48:18 -08:00
Phillip Webb
48db5457f1
Polish
2014-12-01 19:32:05 -08:00
Stephane Nicoll
8ee237a9c6
Fix documentation syntax typo
2014-11-26 18:14:28 +01:00
Andy Wilkinson
a83f9c6311
Correct markup in documentation of how to configure Undertow
2014-11-26 10:55:33 +00:00
Dave Syer
3bb598a421
Only hide /health details if the app is actually secure
...
Also gives the user the option to override (by setting
endpoints.health.sensitive=false).
Fixes gh-1977 in a slightly different way
2014-11-25 16:40:18 +00:00
Andy Wilkinson
55fadf1231
Merge branch '1.1.x'
2014-11-25 13:54:06 +00:00
Andy Wilkinson
2b4eee5e53
Add a note explaining that double backslashes are unnecessary in YAML
...
Closes gh-1989
2014-11-25 13:52:26 +00:00
Sjoerd Mulder
cc557833a4
Escape backslashes in .properties examples of setting internal-proxies
...
In a properties file, a backslash is used as an escape character for
the line terminator sequence to allow values to be split across
multiple lines. When a backslash is used elsewhere they're stripped
out of the property's value.
This commit updates .properties-based examples for configuring
server.tomcat.internal-proxies to escape the backslahes so that they
are retained in the property's value at runtime.
See gh-1989
2014-11-25 13:39:25 +00:00
Andy Wilkinson
092b861ee3
Merge branch '1.1.x'
2014-11-25 12:32:21 +00:00
Andrea Vacondio
9ef8335881
Fix broken link to the MVC section of the Spring reference docs
...
Closes gh-1998
2014-11-25 12:31:57 +00:00
Andy Wilkinson
a708b28d9d
Document restrictions when /health is accessed anonymously
...
Closes gh-1978
2014-11-25 12:22:23 +00:00
Andy Wilkinson
26a511495e
Allow the user to opt-out of anonymous access restrictions for /health
...
By default, when /health is accessed anonymously, the details are
stripped, i.e. the response will only indicate UP or DOWN. Furthermore
the response is cached for a configurable period to prevent a denial
of service attack.
This commit adds a configuration property,
endpoints.health.restrict-anonymous-access, that can be set to false
to allow full anonymous access to /health. When full access is
allowed, the details will be included in the response and the response
will not be cached.
Closes gh-1977
2014-11-25 12:04:45 +00:00
Andy Wilkinson
023d5bea3b
Merge branch '1.1.x'
2014-11-25 10:51:44 +00:00
Andy Wilkinson
feddb2e8a1
Note that @IntegrationTest and @WebAppConfiguration can be used with Spock
...
Closes gh-1908
2014-11-25 10:51:27 +00:00
Stephane Nicoll
4402c6b4a0
Haromonize configuration keys to lowercase hyphen
2014-11-25 09:00:02 +01:00
Andy Wilkinson
efe50ebcad
Document WebSocket exclusions that are required when using Jetty 8
...
Closes gh-1969
2014-11-24 16:59:07 +00:00
Stephane Nicoll
dea1ca9855
Update description of property type
2014-11-24 10:38:13 +01:00
Phillip Webb
08988fd182
Update docs about Jetty 9 and Tomcat 8
...
Fixes gh-1951
2014-11-20 17:55:15 -08:00
Phillip Webb
2b57c5a4dd
Rename spring.data.mongo.repositories.enabled
...
Rename mongo to mongodb.
Fixes gh-1966
2014-11-20 14:57:49 -08:00
Phillip Webb
670ba33bec
Improve MongoDataAutoConfiguration
...
Update MongoDataAutoConfiguration to provide easier configuration of
CustomConversions, the MappingMongoConverter, MongoMappingContext
and an authentication database.
Fixes gh-1619
Fixes gh-1730
2014-11-20 14:55:19 -08:00
Phillip Webb
182ce21542
Clarify configuration meta-data details
...
Update the configuration meta-data appendix to clarify a few things.
2014-11-20 10:07:02 -08:00
Stephane Nicoll
ab6878ab66
Add documentation for the deprecated field
2014-11-20 18:37:34 +01:00
Dave Syer
689d49021b
Merge branch '1.1.x'
2014-11-20 12:39:17 +00:00
Brian Clozel
404153a758
Minor fixes in howto documentation re:SSL config
...
Fixes a couple of typos in the documentation:
* `x-forwarded-protocol` is not the standard name for this header
* `require_https` is not an existing property, but rather `require_ssl`
2014-11-20 13:27:27 +01:00
Phillip Webb
c34cfb27a3
Polish
2014-11-19 10:52:26 -08:00
Dave Syer
7fa0ea7c3b
Add support for spring.jersey.type=filter
...
Fixes gh-1756
2014-11-19 16:51:55 +00:00
Andy Wilkinson
90af8bf54a
Add auto-configuration for Jetty 9's WebSocket support
...
Closes gh-1269
2014-11-19 14:44:54 +00:00
Andy Wilkinson
1864d79077
Polish Undertow contribution
...
Closes gh-1779
2014-11-18 21:20:34 +00:00