<?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>
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/zj978723/archive/2009/09/02/4511804.aspx