浏览 5845 次
该帖已经被评为新手帖
|
|
---|---|
作者 | 正文 |
发表时间:2009-02-06
最后修改:2009-06-24
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"> <bean id="testAction" class="test.action.Stuts2ActionTest"> <property name="service" ref="templatesService"></property> </bean> <bean id="templatesService" class="test.service.impl.TaoTemplatesServiceImpl"> <property name="dao" ref="templatesDAO" /> </bean> <bean id="templatesDAO" class="test.dao.impl.TaoTemplatesDAOImpl"> <property name="sessionFactory" ref="sessionFactory"></property> </bean> <!--定义数据源--> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <!-- 定义数据库驱动--> <property name="driverClassName"> <value>oracle.jdbc.driver.OracleDriver</value> </property> <!-- 定义数据库url--> <property name="url"> <value>jdbc:oracle:thin:@192.168.1.96:1521:yxdb</value> </property> <!-- 定义数据库用户名--> <property name="username"> <value>yxuser</value> </property> <!-- 定义数据库密码--> <property name="password"> <value>yxuser</value> </property> </bean> <!--定义一个hibernate的SessionFactory--> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <!-- 定义SessionFactory必须注入DataSource--> <property name="dataSource"> <ref local="dataSource" /> </property> <property name="mappingResources"> <list> <!--以下用来列出所有的PO映射文件--> <value>test/mapping/Tao_Templates.hbm.xml</value> </list> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect"> org.hibernate.dialect.Oracle10gDialect </prop> <prop key="hibernate.show_sql">true</prop> <!--此处用来定义hibernate的SessionFactory的属性: 不同数据库连接,启动时选择create,update,create-drop --> <prop key="hibernate.hbm2ddl.auto">update</prop> </props> </property> </bean> <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="sessionFactory"> <ref bean="sessionFactory" /> </property> </bean> <!-- 事务通知 --> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="add*" propagation="REQUIRED" /> <tx:method name="del*" propagation="REQUIRED" /> <tx:method name="mod*" propagation="REQUIRED" /> <tx:method name="*" read-only="true" /> </tx:attributes> </tx:advice> <!-- Spring AOP config --> <aop:config > <!-- 切入点 --> <aop:pointcut id="newServicesPointcut" expression="execution(* test.dao.impl.*.*(..))" /> <aop:pointcut id="newServicesPointcut2" expression="execution(* com.yx.news.model.*.*(..))" /> <aop:advisor advice-ref="txAdvice" pointcut-ref="newServicesPointcut" /> <aop:advisor advice-ref="txAdvice" pointcut-ref="newServicesPointcut2" /> </aop:config> </beans> 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2009-02-06
最后修改:2009-02-06
实在忍不住了,这种东西以后别往论坛发,和垃圾邮件有什么两样?要发发自己blog里,不要浪费大家时间。不要把javaeye弄成灌水垃圾社区
|
|
返回顶楼 | |