Upgraded to Spring Boot 1.0 RC3.

Moved configuration classes to main folders. Removed previously required @Enable…Repositories annotations.
This commit is contained in:
Oliver Gierke
2014-02-14 18:59:52 +01:00
parent 5c48b25056
commit 2ca3aa159c
13 changed files with 44 additions and 59 deletions

View File

@@ -0,0 +1,26 @@
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.springdata.jpa.java8;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
@Configuration
@EnableAutoConfiguration
@EnableJpaAuditing class AuditingConfiguration {
}

View File

@@ -21,33 +21,18 @@ import static org.junit.Assert.*;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import example.springdata.jpa.java8.Customer;
import example.springdata.jpa.java8.CustomerRepository;
/**
* Integration test to show the usage of Java 8 date time APIs with Spring Data JPA auditing.
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
@ContextConfiguration(classes = AuditingConfiguration.class)
public class Java8AuditingIntegrationTests {
@Configuration
@EnableAutoConfiguration
@EnableJpaRepositories
@EnableJpaAuditing
static class Config {
}
@Autowired CustomerRepository repository;
@Test