remagine
spring.io에서 spring 따라 만들기 본문
Spring Study
1. 스프링 공부 시작
1.1 Init Project
Group : com.iropke
Artifact : arthur
Dependencies : Web, JPA, Security
로 설정하고 Generate Project
Arthur.zip 파일이 다운이 됨. 원하는 폴더에 unzip
1.2 Project 내용
gradle eclipse를 통해 파일을 생성하고
eclipse에 import
초기 디렉토리 구조
build.gradle 초기 설정 내용
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | buildscript { ext { springBootVersion = '1.4.1.RELEASE' } repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") } } apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'spring-boot' jar { baseName = 'arthur' version = '0.0.1-SNAPSHOT' } sourceCompatibility = 1.8 targetCompatibility = 1.8 repositories { mavenCentral() } dependencies { compile('org.springframework.boot:spring-boot-starter-data-jpa') compile('org.springframework.boot:spring-boot-starter-security') compile('org.springframework.boot:spring-boot-starter-web') testCompile('org.springframework.boot:spring-boot-starter-test') } | cs |
Spring 프로젝트를 Gradle로 build하는데 성공하였다.
'Spring' 카테고리의 다른 글
토비의 스프링 3.1 읽기 (2) (0) | 2016.09.27 |
---|---|
토비의 스프링 3.1 읽기 (1) (0) | 2016.09.26 |
Comments