Skip to content

Commit

Permalink
Upgrade to Spring Boot 1.0.0.RC4
Browse files Browse the repository at this point in the history
  • Loading branch information
bclozel committed Mar 4, 2014
1 parent 8ab6d47 commit c2589fe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions spring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ Check out [SampleApplication, the main Application file](src/main/java/com/teche
## Infrastructure Software Versions
The tests were run with:

* [Spring 4.0.1.RELEASE](http://projects.spring.io/spring-framework/)
* [Spring Boot 1.0.0.RC3](http://projects.spring.io/spring-boot/)
* [Spring Data JPA 1.5.0.RC1](http://projects.spring.io/spring-data-jpa/)
* [Spring 4.0.2.RELEASE](http://projects.spring.io/spring-framework/)
* [Spring Boot 1.0.0.RC4](http://projects.spring.io/spring-boot/)
* [Spring Data JPA 1.5.0.RELEASE](http://projects.spring.io/spring-data-jpa/)
* [Java OpenJDK 1.7.0_09](http://openjdk.java.net/)
* [Tomcat 8.0.3](https://tomcat.apache.org/)
2 changes: 1 addition & 1 deletion spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.0.0.RC3</version>
<version>1.0.0.RC4</version>
</parent>

<groupId>com.techempower</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import org.apache.coyote.AbstractProtocol;
import org.apache.coyote.ProtocolHandler;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainerFactory;
import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer;
import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;
import org.springframework.boot.context.embedded.tomcat.TomcatConnectorCustomizer;
import org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory;
Expand All @@ -26,7 +26,7 @@ public class TomcatCustomizer implements EmbeddedServletContainerCustomizer {
private int maxKeepAliveRequests;

@Override
public void customize(ConfigurableEmbeddedServletContainerFactory factory) {
public void customize(ConfigurableEmbeddedServletContainer factory) {

customizeTomcatConnector((TomcatEmbeddedServletContainerFactory) factory);
}
Expand Down

0 comments on commit c2589fe

Please sign in to comment.