728x90
반응형
SMALL
📌 New Spring project 생성하기
📌 Dependencies 설정
📌 추가 라이브러리
1. 먼저 build.gradle로 들어간다.
2. dependencies에 추가라이브러리를 적어넣는다.
plugins {
id 'org.springframework.boot' version '2.6.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'mysql:mysql-connector-java'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.springframework.security:spring-security-test'
implementation 'javax.servlet:jstl' // JSTL
implementation 'org.apache.tomcat.embed:tomcat-embed-jasper' // JSP 탬플릿 엔진
implementation 'org.springframework.security:spring-security-taglibs' // Security 태그 라이브러리implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
}
tasks.named('test') {
useJUnitPlatform()
}
728x90
반응형
LIST
'Spring > Spring 블로그만들기' 카테고리의 다른 글
[Springboot] 나만의 블로그 만들기 - 6. Git 세팅 (0) | 2022.03.08 |
---|---|
[Springboot] 나만의 블로그 만들기 - 5. MySQL 스프링 연결 (0) | 2022.03.07 |
[Springboot] 나만의 블로그 만들기 - 4. MySQL 세팅하기 (0) | 2022.03.07 |
[Springboot] 나만의 블로그 만들기 - 3. 프로젝트 실행해보기 (0) | 2022.03.07 |
[Springboot] 나만의 블로그 만들기 - 1. 환경세팅 (0) | 2022.03.07 |