Browse Source

minor doc changes based on RC5 migration experience

pull/543/merge
hoserdude 12 years ago committed by Dave Syer
parent
commit
5ef7bda47a
  1. 2
      spring-boot-docs/src/main/asciidoc/howto.adoc
  2. 1
      spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc

2
spring-boot-docs/src/main/asciidoc/howto.adoc

@ -422,7 +422,7 @@ that sets up the connector to be secure: @@ -422,7 +422,7 @@ that sets up the connector to be secure:
private static class MyCustomizer implements EmbeddedServletContainerCustomizer {
@Override
public void customize(ConfigurableEmbeddedServletContainerFactory factory) {
public void customize(ConfigurableEmbeddedServletContainer factory) {
if(factory instanceof TomcatEmbeddedServletContainerFactory) {
customizeTomcat((TomcatEmbeddedServletContainerFactory) factory));
}

1
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc

@ -82,6 +82,7 @@ keep the benefit of the dependency management (but not the plugin management) us @@ -82,6 +82,7 @@ keep the benefit of the dependency management (but not the plugin management) us
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>{spring-boot-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>

Loading…
Cancel
Save