트랜잭션 주석 오류 내가 "를 넣을 때.@Transactional(readOnly=false)내 서비스 클래스의 주석 다음 오류가 발생합니다. 설명: 빈 '학생 서비스'를 '로 주입할 수 없습니다.com.student.service.StudentServiceImplcom.student.service를 구현하는 JDK 동적 프록시이기 때문입니다.학생 서비스 샘플 코드: @Service("studentService") @Transactional(readOnly=false) public class StudentServiceImpl implements StudentService { } public interface StudentService { } 작업: 빈을 인터페이스 중 하나로 주입하거나 설정을 통해 CGL..