spring_reference/IV. Spring Boot features/32.3. Using a Java EE manag...

4 lines
730 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

### 32.3. 使用一个J2EE管理的事务管理器
如果你将Spring Boot应用打包为一个war或ear文件并将它部署到一个J2EE的应用服务器中那你就能使用应用服务器内建的事务管理器。Spring Boot将尝试通过查找常见的JNDI路径java:comp/UserTransaction, java:comp/TransactionManager等来自动配置一个事务管理器。如果使用应用服务器提供的事务服务你通常需要确保所有的资源都被应用服务器管理并通过JNDI暴露出去。Spring Boot通过查找JNDI路径java:/JmsXA或java:/XAConnectionFactory获取一个ConnectionFactory来自动配置JMS并且你可以使用spring.datasource.jndi-name属性配置你的DataSource。