Browse Source

Polish

pull/64/merge
Phillip Webb 12 years ago
parent
commit
1bdb2ce1c2
  1. 3
      CONTRIBUTING.md
  2. 2
      spring-boot-samples/spring-boot-sample-web-jsp/src/main/java/org/springframework/boot/sample/jsp/SampleWebJspApplication.java
  3. 3
      spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatConnectorCustomizer.java
  4. 3
      spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatContextCustomizer.java

3
CONTRIBUTING.md

@ -1,8 +1,11 @@ @@ -1,8 +1,11 @@
# Contributing to Spring Boot
Spring Boot is released under the non-restrictive Apache 2.0 license. If you would like
to contribute something, or simply want to hack on the code this document should help
you get started.
## Sign the Contributor License Agreement
Before we accept a non-trivial patch or pull request we will need you to sign the
[contributor's agreement](https://support.springsource.com/spring_committer_signup).
Signing the contributor's agreement does not grant anyone commit rights to the main repository, but it does mean that we

2
spring-boot-samples/spring-boot-sample-web-jsp/src/main/java/org/springframework/boot/sample/jsp/SampleWebJspApplication.java

@ -25,7 +25,7 @@ import org.springframework.context.annotation.Configuration; @@ -25,7 +25,7 @@ import org.springframework.context.annotation.Configuration;
@EnableAutoConfiguration
@ComponentScan
public class SampleWebJspApplication {
public static void main(String[] args) throws Exception {
SpringApplication.run(SampleWebJspApplication.class, args);
}

3
spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatConnectorCustomizer.java

@ -19,7 +19,10 @@ package org.springframework.boot.context.embedded.tomcat; @@ -19,7 +19,10 @@ package org.springframework.boot.context.embedded.tomcat;
import org.apache.catalina.connector.Connector;
/**
* Callback interface that can be used to customize a Tomcat {@link Connector}.
*
* @author Dave Syer
* @see TomcatEmbeddedServletContainerFactory
*/
public interface TomcatConnectorCustomizer {

3
spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatContextCustomizer.java

@ -19,7 +19,10 @@ package org.springframework.boot.context.embedded.tomcat; @@ -19,7 +19,10 @@ package org.springframework.boot.context.embedded.tomcat;
import org.apache.catalina.Context;
/**
* Callback interface that can be used to customize a Tomcat {@link Context}.
*
* @author Dave Syer
* @see TomcatEmbeddedServletContainerFactory
*/
public interface TomcatContextCustomizer {

Loading…
Cancel
Save