-
[SPRING] 트랜잭션 설정SPRING 2019. 12. 5. 11:00반응형
이번 포스팅에서는 스프링 트랜잭션 설정을 하려고 한다.
먼저 필자 기준 context-datasource.xml 파일을 추가한다.
<beans xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource" /> </bean> <tx:annotation-driven transaction-manager="transactionManager"/>
다음 트랜잭션을 사용할 메서드 위에 추가한다.
@Transactional(propagation = Propagation.REQUIRED)
반응형'SPRING' 카테고리의 다른 글
[Spring] CORS policy 에러 해결 방법 (0) 2020.10.29 [SPRING] 스프링 Async 설정 (0) 2019.12.05