Spring03 :: Spring boot에 필요한 설정
buildscript {
ext {
springBootVersion = '2.1.9.RELEASE'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group 'com.jojoldu.book'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile group: 'junit', name: 'junit', version: '4.12'
}
ext : build.gradle 사용하는 전역변수를 설정
jcenter() : 라이브러리 업로드 받는곳
spring-boot-start-web 과 spring-boot-starter-test 를 잘 받은것을 확인할 수 있습니다.
다작성하고
1시간 20페이지 정도
*reference : 스프링부트와 AWS 혼자 구현하는 웹 서비스
'Spring' 카테고리의 다른 글
Spring 예제 (0) | 2021.12.10 |
---|---|
객체지향 설계와 스프링 (0) | 2021.12.09 |
Spring 프로젝트 설정 & 테스트 코드 작성하기 (0) | 2021.05.25 |
Spring02 :: Spring boot jar 파일 배포 (0) | 2020.08.21 |
Spring01 :: Spring (0) | 2020.08.08 |
댓글
이 글 공유하기
다른 글
-
객체지향 설계와 스프링
객체지향 설계와 스프링
2021.12.09 -
Spring 프로젝트 설정 & 테스트 코드 작성하기
Spring 프로젝트 설정 & 테스트 코드 작성하기
2021.05.25 -
Spring02 :: Spring boot jar 파일 배포
Spring02 :: Spring boot jar 파일 배포
2020.08.21 -
Spring01 :: Spring
Spring01 :: Spring
2020.08.08