Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Proxy
- 스프링 핵심 원리
- Spring Boot
- 알고리즘
- db
- Exception
- pointcut
- 인프런
- 김영한
- AOP
- springdatajpa
- Thymeleaf
- 스프링 핵심 기능
- Android
- QueryDSL
- 그리디
- kotlin
- Greedy
- 자바
- java
- Servlet
- spring
- jpa
- transaction
- http
- SpringBoot
- JPQL
- 백준
- JDBC
- 스프링
Archives
- Today
- Total
개발자되기 프로젝트
[WebPage] 상품 상세 본문
1. Controller
- item을 조회하는 메서드 추가.
@Controller
@RequestMapping("/basic/items")
@RequiredArgsConstructor
public class BasicItemController {
private final ItemRepository itemRepository;
@GetMapping
public String items(Model model){
List<Item> items = itemRepository.findAll();
model.addAttribute("items", items);
return "basic/items";
}
/**
* Test용 Data
*/
@PostConstruct
public void init(){
itemRepository.save(new Item("itemA", 10000, 10));
itemRepository.save(new Item("itemB", 20000, 20));
}
@GetMapping("/{itemId}")
public String item(@PathVariable("itemId") long itemId, Model model){
Item item = itemRepository.findById(itemId);
model.addAttribute("item", item);
return "basic/item";
}
}
2. item.html
- items.html과 동일하게 Thymleaf 적용
- 참고 : location.href -> 새로운 페이지로 이동.
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8">
<link th:href="@{/css/bootstrap.min.css}"
href="../css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container" style="max-width: 600px">
<div class="py-5 text-center">
<h2>상품 목록</h2>
</div>
<div class="row">
<div class="col">
<button class="btn btn-primary float-end"
onclick="location.href='addForm.html'"
th:onclick="|location.href='@{/basic/items/add}'|"
type="button">상품
등록</button>
</div>
</div>
<hr class="my-4">
<div>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>상품명</th>
<th>가격</th>
<th>수량</th>
</tr>
</thead>
<tbody>
<tr th:each="item : ${items}">
<td><a href="item.html" th:href="@{/basic/items/{itemId}(itemId=${item.id})}" th:text="${item.id}">회원id</a></td>
<td><a href="item.html" th:href="@{/basic/items/{itemId}(itemId=${item.id})}"th:text="${item.itemName}">상품명</a></td>
<td th:text="${item.price}">가격</td>
<td th:text="${item.quantity}">수량</td>
</tr>
<tr>
<td><a href="item.html">1</a></td>
<td><a href="item.html">테스트 상품1</a></td>
<td>10000</td>
<td>10</td>
</tr>
<tr>
<td><a href="item.html">2</a></td>
<td><a href="item.html">테스트 상품2</a></td>
<td>20000</td>
<td>20</td>
</tr>
</tbody>
</table>
</div>
</div> <!-- /container -->
</body>
</html>
3. GitHub : 210917 Thymeleaf2
'인프런 > [인프런] 스프링 MVC 1' 카테고리의 다른 글
[WebPage] 상품등록 - @ModelAttribute (0) | 2021.09.17 |
---|---|
[WebPage] 상품 등록 form (0) | 2021.09.17 |
[WebPage] Thymeleaf로 고치기 (0) | 2021.09.17 |
[WebPage] 상품서비스 HTML (0) | 2021.09.17 |
[WebPage] 상품 도메인 개발 (0) | 2021.09.16 |
Comments