본문 바로가기

Spring

Spring Boot Start

  • https://start.spring.io/ 에 접속한 이후 ADD DEPENDENCIES 를 클릭하여 DEPENDENCY 추가 후 아래와 같이 설정 한 후 GENERATE 버튼을 클릭 하여 프로젝트를 다운 받음

  • pom.xml 파일을 수정
    • 2.1.13.RELEASES로 변경
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.13.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
  • resources 밑에 application.yml 파일 생성 후 서버 포트 변경(8080 → 8088)
    server:
      port: 8088

'Spring' 카테고리의 다른 글

Spring REST API 기본호출 구현  (0) 2021.06.10
Lombok  (0) 2021.06.09
Cross-Origin-Resource-Sharing(CORS) 처리  (0) 2020.07.26
JUnit All Test 생성  (0) 2020.07.26
3-tier Architecture  (0) 2020.07.21