반응형 readonly1 Java | @Transactional(readOnly = true) 빨간글씨 문제점 Transactional 어노테이션을 이용할 때 readOnly 속성을 사용하고자 할 때 readOnly 글씨가 빨간색으로 오류를 나타낼 때가 있다. 원인 이건 readOnly 기능을 제공하는 Transactional이 아닌 다른 동명의 Transactional 어노테이션을 import 했기 때문이다. 해결책 아래의 Transactional로 바꿔보자. import org.springframework.transaction.annotation.Transactional; 그럼 아래와 같이 정상적으로 readOnly 속성이 인식되는 것을 확인할 수 있다. 2022. 4. 13. 19:02 이전 1 다음 반응형