@Transactional 이 자동완성에도 안뜨는데 어떻게 해결해야할 지 모르겠어요
# 순수 Jdbc 강의에서 환경설정 하시던거 따라해서 # build.gradle 파일 설정 dependencies { implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-jdbc' runtimeOnly 'com.h2database:h2' testImplementation 'org.springframework.boot:spring-boot-starter-test' }# src.main.resources.application.properties 에 설정 spring.datasource.url=jdbc:h2:tcp://localhost/~/test spring.datasource.driver-class-name=org.h2.Driver강의에 있는 대로 설정해주면, install 이 되면서 라이브러리 가져와지더라구요