Multi DB 환경에서 Transaction 어노테이션이 적용되지 않음 [원인] 멀티 DB 환경에선 각 DB별로 TransactionManager(매니저)가 생성되지만 어노테이션을 적용하며 매니저를 지정 하지 않을 경우 적용이 안되는것을 확인 [해결] 옵션 value를 사용해 매니저 지정 @Transactional(value = "secondTransactionManager")