Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
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
Archives
Today
Total
관리 메뉴

개발자되기 프로젝트

[WebPage] 프로젝트 생성, 요구사항 분석 본문

인프런/[인프런] 스프링 MVC 1

[WebPage] 프로젝트 생성, 요구사항 분석

Seung__ 2021. 9. 16. 23:12

1. 프로젝트 생성.


  • JAVA 11
  • Gradle
  • SpringWeb
  • Lombok
  • Thymleaf

 

2. welcome 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>

 

 

3. 상품 도메인 모델


  • 상품ID
  • 상품명
  • 가격
  • 수량

 

 

4. 상품 관리 기능


  • 상품 목록
  • 상품 상세
  • 상품 등록
  • 상품 수정

 

 

5. 서비스 흐름


 

 

6. GitHub : MVC3


 

GitHub - bsh6463/MVC3

Contribute to bsh6463/MVC3 development by creating an account on GitHub.

github.com

 

Comments