[SPRING BOOT] 1. 멀티 프로젝트 만들기
2021. 5. 14. 16:16
스프링
1. 아래 spring initializr 홈페이지 접속후 프로젝트 생성 https://start.spring.io/ 2. 아래 이미지 처럼 해당 프로젝트 설정 GENERATE CTRL 클릭 3. sts에서 해당 프로젝트 import 마우스 오른쪽 클릭 -> import -> gradle 입력 Finish 클릭 프로젝트 구조 4. settings.gradle 수정 rootProject.name = 'multiproject' include 'core', 'web' 5. build.gradle 수정 buildscript { ext { springBootVersion = '2.2.6.RELEASE' } repositories { mavenCentral() } dependencies { classpath("or..