pull/64/merge
Phillip Webb 11 years ago
parent be1c279be6
commit 1bdb2ce1c2

@ -1,8 +1,11 @@
# Contributing to Spring Boot # Contributing to Spring Boot
Spring Boot is released under the non-restrictive Apache 2.0 license. If you would like 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 to contribute something, or simply want to hack on the code this document should help
you get started. 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 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). [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 Signing the contributor's agreement does not grant anyone commit rights to the main repository, but it does mean that we

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

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

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

Loading…
Cancel
Save