diff --git a/spring-test/src/main/java/org/springframework/test/context/transaction/TransactionConfiguration.java b/spring-test/src/main/java/org/springframework/test/context/transaction/TransactionConfiguration.java index a00106c44fedcab7e935768039d4131ba1c8f27d..4d73bc636ec57d7921b8415ea06a3c9dd8d2ee74 100644 --- a/spring-test/src/main/java/org/springframework/test/context/transaction/TransactionConfiguration.java +++ b/spring-test/src/main/java/org/springframework/test/context/transaction/TransactionConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2014 the original author or authors. + * Copyright 2002-2015 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. @@ -33,6 +33,11 @@ import java.lang.annotation.Target; * @author Sam Brannen * @since 2.5 * @see TransactionalTestExecutionListener + * @see org.springframework.transaction.annotation.Transactional + * @see org.springframework.test.annotation.Rollback + * @see org.springframework.test.context.jdbc.Sql + * @see org.springframework.test.context.jdbc.SqlConfig + * @see org.springframework.test.context.jdbc.SqlConfig#transactionManager * @see org.springframework.test.context.ContextConfiguration */ @Documented @@ -63,9 +68,9 @@ public @interface TransactionConfiguration { * * *

NOTE: The XML {@code } element also refers - * to a bean named "transactionManager" by default. If you are using both + * to a bean named {@code "transactionManager"} by default. If you are using both * features in combination, make sure to point to the same transaction manager - * bean - here in {@code @TransactionConfiguration} and also in + * bean — here in {@code @TransactionConfiguration} and also in * {@code }. */ String transactionManager() default "";