일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 장고
- programmers
- 마라마라빔
- 코드트리
- 모각코
- 데이터베이스
- 백준
- 알고리즘
- DFS
- 파이썬
- MyPlaylist
- SQL
- 종합설계
- Planned
- 최소스패닝트리
- 백트래킹
- 동적계획법
- BFS
- 소프트웨어공학
- Kruskal
- django
- 그리디알고리즘
- 실습
- B대면노래방
- 함밥
- 프로그래머스
- minimum spanning tree
- codetree
- Bellman-Ford
- DP
Archives
- Today
- Total
Leta Learns
@Transactional import 하기 본문
https://www.inflearn.com/questions/112292
transactional annotation이 import가 되지 않아서 찾아봤더니 질의응답 게시판에 이미 같은 질문이 있었다.
build.gradle 파일에 들어가
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
runtimeOnly 'com.h2database:h2'
를 입력한 후 gradle refresh를 하면 된다.
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') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
gradle refresh (reload 방법)
View > Tool Windows > gradle 로 들어가서 해당 프로젝트를 우클릭 하고 Refresh Gradle Dependencies를 클릭하면 된다는데
나는 그냥 Reload All Gradle Projects 했다. ㅎㅎ
'Spring' 카테고리의 다른 글
[IntelliJ] Generate 단축키 (windows) (0) | 2022.07.25 |
---|---|
@Autowired / Could not autowire. No beans of '~' type found. (0) | 2022.07.18 |
스프링 빈 Spring Bean (0) | 2022.07.13 |
cmd에서 빌드하기 (0) | 2022.07.05 |
Comments