From 1bdb2ce1c2507da66ecdaa7d42f2be384c50929e Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Mon, 30 Sep 2013 09:50:38 -0700 Subject: [PATCH] Polish --- CONTRIBUTING.md | 3 +++ .../boot/sample/jsp/SampleWebJspApplication.java | 2 +- .../context/embedded/tomcat/TomcatConnectorCustomizer.java | 3 +++ .../boot/context/embedded/tomcat/TomcatContextCustomizer.java | 3 +++ 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1600ab726d6..3345efd8e39 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 diff --git a/spring-boot-samples/spring-boot-sample-web-jsp/src/main/java/org/springframework/boot/sample/jsp/SampleWebJspApplication.java b/spring-boot-samples/spring-boot-sample-web-jsp/src/main/java/org/springframework/boot/sample/jsp/SampleWebJspApplication.java index 9e1a124aafa..5b39d285ea5 100644 --- a/spring-boot-samples/spring-boot-sample-web-jsp/src/main/java/org/springframework/boot/sample/jsp/SampleWebJspApplication.java +++ b/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; @EnableAutoConfiguration @ComponentScan public class SampleWebJspApplication { - + public static void main(String[] args) throws Exception { SpringApplication.run(SampleWebJspApplication.class, args); } diff --git a/spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatConnectorCustomizer.java b/spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatConnectorCustomizer.java index 82bf11995fb..3e25f82518a 100644 --- a/spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatConnectorCustomizer.java +++ b/spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatConnectorCustomizer.java @@ -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 { diff --git a/spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatContextCustomizer.java b/spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatContextCustomizer.java index 7334fc1bade..8a3719738a4 100644 --- a/spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatContextCustomizer.java +++ b/spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatContextCustomizer.java @@ -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 {