프레임워크/Spring
[프레임워크] <Spring>〈Gradle〉프로젝트 특징
KONI_LEE
2024. 3. 7. 14:42
MC
◎ 컨트롤러
◎ 모델
정적웹 리소스
◎ html
◎ 이미지
◎ 템플릿
동적웹 리소스
◎ jsp
의존성 설정
plugins {
id 'java'
id 'war'
id 'org.springframework.boot' version '3.2.3'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'com.koreait'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.apache.tomcat.embed:tomcat-embed-jasper'
implementation 'javax.servlet:jstl'
}
tasks.named('test') {
useJUnitPlatform()
}