본문 바로가기
JAVA/Spring

Intellij로 Spring Project 생성 방법

by 소라둥이 2020. 3. 4.

1. Gradle 또는 Maven 프로젝트 생성


1) Intellij 실행 - File - New - Project 선택

 

2) Maven 또는 Gradle 선택 - Project SDK 버전 확인 후 Next

 

3) GroupId(프로젝트 고유 ID, 도메인 이름과 동일)

   ArtifactId(빌드 후 jar파일 이름, 프로젝트 이름과 동일 입력 - Next

 

4) 프로젝트 이름 및 저장 경로 확인 - Finish

 

2. Spring MVC 추가 및 설정


1) 생성된 프로젝트 우클릭 - Add Framework Support... 선택

 

2) Spring MVC 선택(현재 Intellij는 5.2.3 지원, 추가 후 변경 가능) - OK

 

3) Web 관련 설정파일 생성 확인

 

Intellij와 Eclipse 설정 파일 이름 비교

Intellij Eclipse
applicationContext.xml root-context.xml
dispatcher-servlet.xml servlet-context.xml
web.xml web.xml

 

3. Tomcat(WAS) 추가


1) Add Configuration... 클릭

 

2) Tomcat Server - Local 선택 - Application server의 Configure선택 - Tomcat 경로 선택

 

3) Deployment - [ + ] Artifact 선택 - Application context 경로 / 변경 - OK

 

4) Tomcat 추가 확인 및 실행 Test

 

'JAVA > Spring' 카테고리의 다른 글

[Intellij] MyBatis Mapper의 @Autowired 에러  (1) 2020.03.23