Spring 은 어떻게 service 에서 업 무 를 제어 합 니까?

3721 단어 service
Spring 은 어떻게 service 에서 업 무 를 제어 합 니까?   Dao 가 2 개 있어 요.
UserDaoImpl:
public void saveUser(User user) {
   this.getHibernateTemplate().save(user);
   }

AcclDaoImpl:
public void saveAccl(Accl accl) {
   this.getHibernateTemplate().save(accl);
   }

Service 
UserServiceImpl:
private IUserDao userDao;
private IAcclDao acclDao;
public void saveUser(User user, Accl accl) {
   this.userDao.saveUser(user);
   this.acclDao.saveAccl(accl);
 }

 
applicationContext.xml:
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
   <property name="configLocation">
   <value>classpath:hibernate.cfg.xml</value>
   </property>
   </bean>
   <!--       -->
   <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
   <property name="sessionFactory">
   <ref bean="sessionFactory"/>
   </property>
   </bean>
   <tx:advice id="smAdvice" transaction-manager="transactionManager">
   <tx:attributes>
   <tx:method name="save*" propagation="REQUIRED"/>
   <tx:method name="del*" propagation="REQUIRED"/>
   <tx:method name="update*" propagation="REQUIRED"/>
   </tx:attributes>
   </tx:advice>
   <aop:config>
   <aop:pointcut id="smMethod" expression="execution(* mm.s2sh.service.*.*(..))"/>
   <aop:advisor pointcut-ref="smMethod" advice-ref="smAdvice"/>
   </aop:config>

   <bean id="userAction" class="mm.s2sh.action.user.UserAction">
   <property name="userService" ref="userService"></property>
   </bean>
   <bean id="userService" class="mm.s2sh.service.user.impl.UserServiceImpl">
   <property name="userDao" ref="userDao"></property>
   <property name="acclDao" ref="acclDao"></property>
   </bean>
   <bean id="userDao" class="mm.s2sh.dao.user.impl.UserDaoImpl">
   <property name="sessionFactory" ref="sessionFactory"></property>
   </bean>
   <bean id="acclDao" class="mm.s2sh.dao.user.impl.AcclDaoImpl">
   <property name="sessionFactory" ref="sessionFactory"></property>
   </bean>

  제출 할 때 데이터 가 데이터베이스 에 들 어가 지 않 은 것 을 발 견 했 습 니 다.  그래서 Dao 에서 save 를 마 친 후 this. getSession (). begin Transaction (). comit ();  Accl 표 에 유 니 크 한 필드 가 있 습 니 다. 제 가 일부러 기 존 데 이 터 를 제출 한 결과 User 표 에 데 이 터 를 삽입 하 게 되 었 습 니 다. 즉, 스크롤 백 이 없다 는 것 입 니 다.   this. getSession (). beginTransaction (). comit () 를 사용 해 서 는 안 될 것 같 습 니 다.근 데 안 쓰 면 업무 가 데이터베이스 에 안 들 어 가 는 것 도 아 닌 데 이 걸 어떻게 해 야 제대로 굴 러 갈 수 있 나 요?
 
 
해결 방안
 service      
@Transactional(readOnly = false)
 2 Dao
UserDaoImpl:
@Transactional(readOnly = false)
public void saveUser(User user) {
 this.getHibernateTemplate().save(user);
 }
AcclDaoImpl:
@Transactional(readOnly = false)
public void saveAccl(Accl accl) {
 this.getHibernateTemplate().save(accl);
 }


 

좋은 웹페이지 즐겨찾기