๐ค๊ธ์ฐ๊ธฐ ๊ตฌํํ๊ธฐ
1.BoardController ์์ฑ
//๊ธ์ฐ๊ธฐ
@GetMapping("/board/saveForm")
public String saveForm() {
return "board/saveForm";
}
2. saveForm.jsp ์์ฑ
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@include file="../layout/header.jsp"%>
<div class="container">
<form>
<div class="form-group">
<input type="text" class="form-control" placeholder="Enter title" id="title">
</div>
<div class="form-group">
<textarea class="form-control summernote" rows="5" id="content"></textarea>
</div>
</form>
<button id="btn-save" class="btn btn-primary">๊ธ์ฐ๊ธฐ ์๋ฃ</button>
</div>
<script>
$('.summernote').summernote({
tabsize: 2,
height: 300
});
</script>
<script src="/js/board.js"></script>
<%@include file="../layout/footer.jsp"%>
3. content ๋ถ๋ถ์ summernote๋ฅผ ์ ์ฉํ๋ค. (For Bootstrap4)
์ ์ฉํ ๋ชจ์ต
4. ๊ธ์ฐ๊ธฐ ๋ฒํผ ํด๋ฆญ์ ๊ธ์ด ๋ฑ๋ก๋๋๋ก board.js ์์ฑ
let index = {
init: function() {
$("#btn-save").on("click", () => {
this.save();
});
},
save: function() {
//alert('user์ saveํจ์ ํธ์ถ๋จ');
let data = {
title: $("#title").val(),
content: $("#content").val()
};
$.ajax({
//๊ธ์ฐ๊ธฐ ์ํ ์์ฒญ
type: "POST",
url: "/api/board",
data: JSON.stringify(data),
contentType: "application/json; charset=utf-8",
dataType: "json"
}).done(function(resp) {
alert("๊ธ์ฐ๊ธฐ๊ฐ ์๋ฃ๋์์ต๋๋ค.");
//console.log(resp);
location.href = "/";
}).fail(function(error) {
alert(JSON.stringify(error));
});
}
}
5. BoardApiController ์์ฑ
- saveForm์๋ title, content ๋ฐ์ดํฐ๋ง ๋ด๊ฒจ์๊ธฐ ๋๋ฌธ์ principal์์ user ๋ฐ์ดํฐ๋ฅผ ๊ฐ์ ธ์ด.
@PostMapping("/api/board")
public ResponseDto<Integer> save(@RequestBody Board board, @AuthenticationPrincipal PrincipalDetail principal) {
boardService.๊ธ์ฐ๊ธฐ(board, principal.getUser());
return new ResponseDto<Integer>(HttpStatus.OK.value(),1);
}
6. BoardService ์์ฑ
@Transactional
public void ๊ธ์ฐ๊ธฐ(Board board, User user) { //title, content
board.setCount(0); //์กฐํ์ ๊ฐ์ ๋ก ๋ฃ๊ธฐ
board.setUser(user);
boardRepository.save(board);
}
7. ์คํ ํ๋ฉด


์ด๋ฏธ์ง๋ ์ ๋ค์ด๊ฐ๋ ๊ฒ์ ํ์ธํ ์ ์๋ค.
๐ค๊ธ ๋ชฉ๋ก๋ณด๊ธฐ ๊ตฌํํ๊ธฐ
1. BoardApiController ์์ฑ
@GetMapping({"","/"})
public String index(Model model, @PageableDefault(size = 3, sort = "id", direction = Direction.DESC) Pageable pageable) {
model.addAttribute("boards", boardService.๊ธ๋ชฉ๋ก(pageable));
//WEB-INF/views/index.jsp
return "Index";
}
2. Index.jsp์ ๋ฐ์ดํฐ ๋ฟ๋ฆฌ๊ธฐ
<c:forEach var="board" items="${boards.content }">
<div class="card m-2">
<div class="card-body">
<h4 class="card-title">${board.title }</h4>
<a href="/board/${board.id }" class="btn btn-primary">์์ธ๋ณด๊ธฐ</a>
</div>
</div>
3. BoardService ์์ฑ
@Transactional(readOnly = true)
public Page<Board> ๊ธ๋ชฉ๋ก(Pageable pageable) {
return boardRepository.findAll(pageable);
}
4. ๊ธ๋ชฉ๋ก ํ์ธํ๊ธฐ
๐ค๊ธ ๋ชฉ๋ก ํ์ด์ง ๊ตฌํํ๊ธฐ
1. ์ปจํธ๋กค๋ฌ์ ํ ํ์ด์ง์ 3๊ฐ์ฉ ๋จ๋๋ก ์ฝ๋๋ฅผ ์์ฑํด ๋์๋ค.
@PageableDefault(size = 3, sort = "id", direction = Direction.DESC) Pageable pageable
2. BoardService์ ๊ธ๋ชฉ๋ก ๋ฉ์๋์ ๋งค๊ฐ๋ณ์์ Pageable์ ์ถ๊ฐํ๋ค.
3. ๋ถํธ์คํธ๋ฉ์ Pagination ์ฝ๋๋ฅผ ๊ฐ์ ธ์์ ์ฌ์ฉํ๋ค.
4. Index.jsp์ ์ถ๊ฐํ๋ค.
- ์ฒซ ๋ฒ์งธ ํ์ด์ง์ผ ๋์๋ disabled์ ์ ์ฉํ์ฌ ํด๋ฆญ์ ๋นํ์ฑํ์ํค๊ณ
- ๊ทธ๋ ์ง ์์ ๋์๋ disabled๋ฅผ ์ ์ฉํ์ง ์์. (c:choose, c:when, c:otherwise)
- ์ด์ ํ์ด์ง ์ด๋์ ?page=${boards.number-1}, ๋ค์ ํ์ด์ง ์ด๋์ ?page=${boards.number+1} ๋ก ๊ตฌํํจ.
<ul class="pagination justify-content-center">
<c:choose>
<c:when test="${boards.first }">
<li class="page-item disabled"><a class="page-link" href="?page=${boards.number-1 }">Previous</a></li>
</c:when>
<c:otherwise>
<li class="page-item"><a class="page-link" href="?page=${boards.number-1}">Previous</a></li>
</c:otherwise>
</c:choose>
<c:choose>
<c:when test="${boards.last }">
<li class="page-item disabled"><a class="page-link" href="?page=${boards.number+1 }">Next</a></li>
</c:when>
<c:otherwise>
<li class="page-item"><a class="page-link" href="?page=${boards.number+1}">Next</a></li>
</c:otherwise>
</c:choose>
</ul>
5. ํ์ด์ง ๊ตฌํ ์๋ฃ
'Springboot > Springboot Blog Project' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
์คํ๋ง ์๋ ์๋ฆฌ ๋ณต์ต! ์ค์โโ (0) | 2022.09.25 |
---|---|
๊ธ ์์ธ๋ณด๊ธฐ, ๊ธ ์ญ์ ํ๊ธฐ, ๊ธ ์์ ํ๊ธฐ ๊ตฌํํ๊ธฐ (1) | 2022.09.25 |
๋น๋ฐ๋ฒํธ ํด์ฌํ(์ํธํ), ์คํ๋ง ์ํ๋ฆฌํฐ ๋ก๊ทธ์ธ ๊ตฌํํ๊ธฐ (0) | 2022.09.24 |
๋ธ๋ก๊ทธ ํ๋ก์ ํธ ์ ํต์ ์ธ ๋ฐฉ์์ ๋ก๊ทธ์ธ ๋ฐฉ๋ฒ (0) | 2022.09.24 |
ํธ๋์ญ์ , DB๊ฒฉ๋ฆฌ์์ค-๋ฉํ์ฝ๋ฉ (0) | 2022.09.24 |