Skip to content

Commit

Permalink
Spring Boot 1.5.3 to 1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jkazama committed Jun 9, 2017
1 parent 9bae6d3 commit d1be751
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ buildscript {
jcenter()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.5.3.RELEASE"
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.5.4.RELEASE"
}
}

apply plugin: "java"
apply plugin: "org.springframework.boot"
apply plugin: "eclipse"

version = "1.5.2"
version = "1.5.3"

sourceCompatibility = '1.7'
targetCompatibility = '1.7'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/sample/ApplicationConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class ApplicationConfig {

/** BeanValidationメッセージのUTF-8に対応したValidator。 */
@Bean
public LocalValidatorFactoryBean mvcValidator(MessageSource message) {
public LocalValidatorFactoryBean defaultValidator(MessageSource message) {
LocalValidatorFactoryBean factory = new LocalValidatorFactoryBean();
factory.setValidationMessageSource(message);
return factory;
Expand Down

0 comments on commit d1be751

Please sign in to comment.