Improve JDBC transaction management doc

This commit is contained in:
Vedran Pavić
2016-05-20 18:56:58 +02:00
committed by Rob Winch
parent 2aff5b0377
commit 509fb99a5d
5 changed files with 13 additions and 3 deletions

View File

@@ -83,8 +83,9 @@ import org.springframework.util.StringUtils;
* new JdbcOperationsSessionRepository(jdbcTemplate, transactionManager);
* </pre>
*
* For additional information on how to create and configure a JdbcTemplate, refer to the
* <a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/html/">
* For additional information on how to create and configure {@link JdbcTemplate} and
* {@link PlatformTransactionManager}, refer to the
* <a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/html/spring-data-tier.html">
* Spring Framework Reference Documentation</a>.
* <p>
* By default, this implementation uses <code>SPRING_SESSION</code> and

View File

@@ -55,6 +55,11 @@ import org.springframework.session.config.annotation.web.http.EnableSpringHttpSe
*
* More advanced configurations can extend {@link JdbcHttpSessionConfiguration} instead.
*
* For additional information on how to configure data access related concerns, please
* refer to the
* <a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/html/spring-data-tier.html">
* Spring Framework Reference Documentation</a>.
*
* @author Vedran Pavic
* @since 1.2.0
* @see EnableSpringHttpSession