프로젝트 생성 및 Welcom Page

shinyeongwoon·2022년 12월 29일
0

Spring MVC 예제 실습

목록 보기
1/12

프로젝트 생성

https://start/spring.io

프로젝트 선택

  • Project : Gradle Project
  • Language : Java
  • Spring boot : 2.7.x

Project Metadata

  • Group : hell
  • Artifact : item-service
  • Name: item-service
  • Package name: hello.itemservice
  • Packgeing : Jar
  • Java : 11

Dependenciese : Spring Web, Thymeleaf, Lombok

동작 확인

기본 메인 클래스 실행 (SpringmvcApplication.main())
http://localhost:8080 호출해서 Whitelabel Error Page가 나오면 정상 동작

Welcom Page 만들기

경로 : /resources/static/index.html

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Title</title>
</head>
<body> 
  <ul>
    <li>상품 관리 <ul>
      <li><a href="/basic/items">상품 관리 - 기본</a></li> 
      </ul>
    </li> 
  </ul>
</body>
</html>

동작 확인

기본 메인 클래스 실행 (Springmvc.Application.main())
http://locahost:8080 호출해서 Welcom 페이지가 나오면 성공

0개의 댓글