Thief of Wealth

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'
}

profile on loading

Loading...