Merge branch '2.0.x' into 2.1.x

This commit is contained in:
Phillip Webb
2019-06-28 23:30:29 -07:00
343 changed files with 338 additions and 140 deletions

View File

@@ -35,6 +35,7 @@ import org.springframework.boot.test.autoconfigure.properties.SkipPropertyMappin
* instead of any application defined or auto-configured {@link DataSource}.
*
* @author Phillip Webb
* @since 1.5.0
* @see TestDatabaseAutoConfiguration
*/
@Target({ ElementType.TYPE, ElementType.METHOD })

View File

@@ -58,6 +58,7 @@ import org.springframework.transaction.annotation.Transactional;
*
* @author Stephane Nicoll
* @author Artsiom Yudovin
* @since 1.5.0
* @see AutoConfigureJdbc
* @see AutoConfigureTestDatabase
* @see AutoConfigureCache

View File

@@ -30,6 +30,7 @@ import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
* {@link TestEntityManager}.
*
* @author Phillip Webb
* @since 1.4.0
* @see TestEntityManagerAutoConfiguration
*/
@Target({ ElementType.TYPE, ElementType.METHOD })

View File

@@ -60,6 +60,7 @@ import org.springframework.transaction.annotation.Transactional;
*
* @author Phillip Webb
* @author Artsiom Yudovin
* @since 1.4.0
* @see AutoConfigureDataJpa
* @see AutoConfigureTestDatabase
* @see AutoConfigureTestEntityManager

View File

@@ -22,7 +22,11 @@ import org.springframework.data.repository.CrudRepository;
* Example repository used with {@link DataJdbcTest} tests.
*
* @author Andy Wilkinson
* @author Dave Syer
* @since 1.2.1
* @deprecated since 2.0.6 since security prerequisites are not supported in Spring Boot 2
*/
@Deprecated
public interface ExampleRepository extends CrudRepository<ExampleEntity, Long> {
}