inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

김성우님의 게시글

김성우 김성우

@ksw4060

수강평 작성수
-
평균평점
-

게시글 1

질문&답변

@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 이 되면서 라이브러리 가져와지더라구요

좋아요수
0
댓글수
2
조회수
392