https://www.bsidesoft.com/?p=6926
인텔리제이 무료 버전으로 Spring Boot 개발 환경 만들기(Gradle)
인텔리제이 커뮤니티 에디션으로 찬찬히 초보자도 따라할 수 있게 스프링 부트 프로젝트를 셋팅해봅니다.
www.bsidesoft.com
빈 프로젝트 만들어서
gradle 설정파일을 아래와 같이 바꿔준다.
buildscript {
ext{
springBootVersion='2.0.4.RELEASE'
}
repositories {
mavenCentral()
}
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.bsidesoft'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
testCompile group: 'junit', name: 'junit', version: '4.12'
}
'개발 > Web Programming' 카테고리의 다른 글
Gradle variable name not initialized in the default constructor (0) | 2020.01.14 |
---|---|
SpringBoot Caused by: java.lang.IllegalStateException 에러? (0) | 2020.01.10 |
@RunWith can not resolve? (0) | 2020.01.09 |
SpringBoot 기본 Denpendencies 추천 (0) | 2020.01.02 |
Maven VS Gradle (0) | 2020.01.01 |