Spring 은 어떻게 service 에서 업 무 를 제어 합 니까?
3721 단어 service
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);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Angular에서 서비스를 사용하여 데이터 공유Michael은 두 가지 구성 요소로 각도 프로젝트를 시작했습니다. 그는 입력 데코레이터를 사용하여 부모에서 자식 구성 요소로 데이터를 전달하고 출력 데코레이터를 사용하여 자식에서 부모 구성 요소로 데이터를 전달했습...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.