Polish auto-configuration for Spring Web Services
Closes gh-5645
This commit is contained in:
@@ -406,6 +406,11 @@ content into your application; rather pick only the properties that you need.
|
||||
spring.velocity.toolbox-config-location= # Velocity Toolbox config location. For instance `/WEB-INF/toolbox.xml`
|
||||
spring.velocity.view-names= # White list of view names that can be resolved.
|
||||
|
||||
# WEB SERVICES ({sc-spring-boot-autoconfigure}/ws/WsProperties.{sc-ext}[WsProperties])
|
||||
spring.ws.path=/services # Path that serves as the base URI for the services.
|
||||
spring.ws.servlet.init= # Servlet init parameters to pass to Spring Web Services.
|
||||
spring.ws.servlet.load-on-startup=-1 # Load on startup priority of the Spring Web Services servlet.
|
||||
|
||||
|
||||
[[common-application-properties-security]]
|
||||
# ----------------------------------------
|
||||
|
||||
@@ -37,6 +37,7 @@ Phillip Webb; Dave Syer; Josh Long; Stéphane Nicoll; Rob Winch; Andy Wilkinson;
|
||||
:spring-boot-maven-plugin-site: http://docs.spring.io/spring-boot/docs/{spring-boot-docs-version}/maven-plugin
|
||||
:spring-reference: http://docs.spring.io/spring/docs/{spring-docs-version}/spring-framework-reference/htmlsingle
|
||||
:spring-security-reference: http://docs.spring.io/spring-security/site/docs/{spring-security-docs-version}/reference/htmlsingle
|
||||
:spring-ws-reference: http://docs.spring.io/spring-ws/docs/{spring-ws-docs-version}/reference/htmlsingle
|
||||
:spring-javadoc: http://docs.spring.io/spring/docs/{spring-docs-version}/javadoc-api/org/springframework
|
||||
:spring-amqp-javadoc: http://docs.spring.io/spring-amqp/docs/current/api/org/springframework/amqp
|
||||
:spring-data-javadoc: http://docs.spring.io/spring-data/jpa/docs/current/api/org/springframework/data/jpa
|
||||
|
||||
@@ -4990,6 +4990,28 @@ public class MyTest {
|
||||
|
||||
|
||||
|
||||
[[boot-features-websockets]]
|
||||
== WebSockets
|
||||
Spring Boot provides WebSockets auto-configuration for embedded Tomcat (8 and 7), Jetty 9
|
||||
and Undertow. If you're deploying a war file to a standalone container, Spring Boot
|
||||
assumes that the container will be responsible for the configuration of its WebSocket
|
||||
support.
|
||||
|
||||
Spring Framework provides {spring-reference}/#websocket[rich WebSocket support] that can
|
||||
be easily accessed via the `spring-boot-starter-websocket` module.
|
||||
|
||||
|
||||
|
||||
[[boot-features-ws]]
|
||||
== Web Services
|
||||
Spring Boot provides Web Services auto-configuration so that all is required is defining
|
||||
your `Endpoints`.
|
||||
|
||||
The {spring-ws-reference}[Spring Web Services features] can be easily accessed via the
|
||||
`spring-boot-starter-ws` module.
|
||||
|
||||
|
||||
|
||||
[[boot-features-developing-auto-configuration]]
|
||||
== Creating your own auto-configuration
|
||||
If you work in a company that develops shared libraries, or if you work on an open-source
|
||||
@@ -5198,18 +5220,6 @@ library.
|
||||
|
||||
|
||||
|
||||
[[boot-features-websockets]]
|
||||
== WebSockets
|
||||
Spring Boot provides WebSockets auto-configuration for embedded Tomcat (8 and 7), Jetty 9
|
||||
and Undertow. If you're deploying a war file to a standalone container, Spring Boot
|
||||
assumes that the container will be responsible for the configuration of its WebSocket
|
||||
support.
|
||||
|
||||
Spring Framework provides {spring-reference}/#websocket[rich WebSocket support] that can
|
||||
be easily accessed via the `spring-boot-starter-websocket` module.
|
||||
|
||||
|
||||
|
||||
[[boot-features-whats-next]]
|
||||
== What to read next
|
||||
If you want to learn more about any of the classes discussed in this section you can
|
||||
|
||||
Reference in New Issue
Block a user