ssh配置--使用AOP配置事务管理
在spring2.0里创建的applicationContext-common.xml文件里,头部的aop与tx代码是没有的,需要手工添加上去,可以在下载的spring源码包里的示例文件中copy过来。
spring2.0里还有一个bug就是使用spring的dataSource时需要加上两个文件:commons-pool.jar和commons-dbcp.jar
applicationContext-common.xml
xmlns:xsi=""
xmlns:aop=""
xmlns:tx=""
xsi:schemaLocation="
">
class="org.apache.commons.dbcp.BasicDataSource">
value="com.mysql.jdbc.Driver">
value="jdbc:mysql://localhost:3306/newspaper">
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
classpath:hibernate.cfg.xml
org.hibernate.dialect.MySQLDialect
阅读(635) | 评论(0) | 转发(0) |