본문 바로가기
IT/Spring

[Spring] - 스프링 The attribute readOnly is undefined for the annotation type Transactional 에러 해결 방법

by 차이나는 개발자 2023. 1. 25.
728x90
반응형

#스프링 The attribute readOnly is undefined for the annotation type Transactional 에러 해결 방법

-@Transactional(readOnly = true) : readOnly 속성을 사용하려고 하는데 에러가 발생했습니다.

 

-@Transactional import를 import jakarta.transaction.Transactional; 로 잘 못하고 있었습니다.

-아래의 라이브러리를 import 해주어야 합니다..

import org.springframework.transaction.annotation.Transactional;

 

 

 

728x90
반응형

댓글