Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- MSA
- JVM
- with recursive
- 백준 15685
- re.split
- JPA
- Spring
- Kotlin
- 백준 17779
- 백준 16236
- 백준 17626
- java 기술면접
- Coroutine
- 프로래머스
- springboot
- java
- spring security
- spring oauth
- 백준 16235
- 백준 19238
- spring cloud
- 백준
- 백준 파이썬
- 파이썬
- 백준 16719
- 프로그래머스
- sql 기술면접
- Spring Boot
- MySQL
- 웹어플리케이션 서버
Archives
- Today
- Total
시작이 반
[Spring] dependencies (mysql, lombok, data-jpa) 본문
SMALL
프로젝트 생성시 자꾸 찾아보는 것들..
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' //타임리프
implementation 'org.springframework.boot:spring-boot-starter-web' //웹
//롬복
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
//mysql
compile 'mysql:mysql-connector-java'
//data-jpa
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
LIST
'Programming > Spring' 카테고리의 다른 글
[Spring] 컴포넌트 스캔, @Autowired (0) | 2021.05.13 |
---|---|
[Spring] 스프링 컨테이너 생성과정 (0) | 2021.05.11 |
Thymeleaf application.properties 값 조회 (0) | 2021.02.22 |
Thymeleaf 자바스크립트 함수 사용 (0) | 2021.02.21 |
[Spring] 스프링 시큐리티 Authentication 바꿔주기 (0) | 2021.02.17 |