spring-service.xml 模板

Posted ryanjie

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring-service.xml 模板相关的知识,希望对你有一定的参考价值。

  1. <?xml version="1.0" encoding="UTF-8"?> 
  2. <beans xmlns="http://www.springframework.org/schema/beans" 
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  4. xmlns:context="http://www.springframework.org/schema/context" 
  5. xmlns:tx="http://www.springframework.org/schema/tx" 
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans 
  7. http://www.springframework.org/schema/beans/spring-beans.xsd 
  8. http://www.springframework.org/schema/context 
  9. http://www.springframework.org/schema/context/spring-context.xsd 
  10. http://www.springframework.org/schema/tx 
  11. http://www.springframework.org/schema/tx/spring-tx.xsd"> 
  12. <!-- 扫描service包下所有使用注解的类型 --> 
  13. <context:component-scan base-package="com.ryanjie.o2o.service"/> 
  14.  
  15. <!-- 配置事务管理器 --> 
  16. <bean id="transactionManager" 
  17. class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> 
  18. <!-- 注入数据库连接池 --> 
  19. <property name="dataSource" ref="dataSource"/> 
  20. </bean> 
  21.  
  22. <!-- 配置基于注解的声明式事务 --> 
  23. <tx:annotation-driven transaction-manager="transactionManager"/> 
  24. </beans> 

以上是关于spring-service.xml 模板的主要内容,如果未能解决你的问题,请参考以下文章

SSM整合时IDE: File is included in 4 contexts

blogdown::serve_site() 无法生成模板站点

Spring注解定时器使用

企业级springboot项目架构模板V2.0,开箱即用

使用ng serve 在Vs Code里调试 anguar 项目

模板字符串的使用