<?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:util="http://www.springframework.org/schema/util"
 xmlns:p="http://www.springframework.org/schema/p"
 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.0.xsd
 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd
 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">


 <bean id="sessionFactory"
  class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  <property name="configLocation"
   value="classpath:hibernate.cfg.xml">
  </property>
 </bean>
 
 <!-- BaseDao的配置 -->
 <bean id="baseDao" class="pack.java.ssh.basedao.BaseDao" abstract="true">
  <property name="sessionFactory" ref="sessionFactory"></property> 
 </bean>
 
 <!-- StudentDaoImpl的配置 -->
 <bean id="studentDaoImpl" class="pack.java.ssh.daoimpl.StudentDaoImpl" parent="baseDao" />
 
 <!-- StudentServiceImpl 的配置; -->
 <bean id="studentServiceImpl"  class="pack.java.ssh.serviceimpl.StudentServiceImpl">
  <property name="studentDao" ref="studentDaoImpl"></property>
 </bean>
 
 <!-- Struts Action 的配置 -->
 <bean name="/studentAction" class="pack.java.ssh.struts.action.StudentActionAction">
  <property name="studentService" ref="studentServiceImpl"></property>
 </bean>
 
 <!-- 事务管理器 -->
 <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  <property name="sessionFactory" ref="sessionFactory"></property>
 </bean>
 
 <!-- 事务属性的配置 -->
 <tx:advice id="mytx">
  <tx:attributes>
   <tx:method name="*"/>
  </tx:attributes>
 </tx:advice>
 
 <!-- 织入 -->
 <aop:config>
  <aop:advisor advice-ref="mytx" pointcut="execution(* pack.y2.hibernate.iservice.*.*(..))"/>
 </aop:config>
 
 </beans>