๐ค๊ธ ์์ธ๋ณด๊ธฐ ๊ตฌํํ๊ธฐ
1. Index.jsp ๊ธ ์์ธ๋ณด๊ธฐ ๋ฒํผ์ <a>ํ๊ทธ ์ถ๊ฐ
2. BoardController ์์ฑ
//๊ธ ์์ธ๋ณด๊ธฐ
@GetMapping("/board/{id}")
public String findById(@PathVariable int id, Model model) {
model.addAttribute("board", boardService.๊ธ์์ธ๋ณด๊ธฐ(id));
return "board/detail";
}
3. BoardService ์์ฑ
public Board ๊ธ์์ธ๋ณด๊ธฐ(int id) {
return boardRepository.findById(id)
.orElseThrow(()->{
return new IllegalArgumentException("๊ธ ์์ธ๋ณด๊ธฐ ์คํจ: ์์ด๋๋ฅผ ์ฐพ์ ์ ์์ต๋๋ค.");
});
}
4. detail.jsp ์์ฑ
- ์์ฑ์ ๋ณธ์ธ๋ง ์์ , ์ญ์ ๊ฐ ๊ฐ๋ฅํ๋๋ก(์์ฑ์์ ๋ก๊ทธ์ธํ ์ฌ์ฉ์ ์์ด๋๊ฐ ๊ฐ์ ๋) <c:if> ์กฐ๊ฑด๋ฌธ์ ๋ฃ์๋ค.
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@include file="../layout/header.jsp"%>
<div class="container">
<button class="btn btn-secondary" onclick="history.back()">๋์๊ฐ๊ธฐ</button>
<c:if test="${board.user.id == principal.user.id }">
<a href="/board/${board.id }/updateForm" class="btn btn-warning">์์ </a>
<button id="btn-delete" class="btn btn-danger">์ญ์ </button>
</c:if>
<br>
<div>
๊ธ๋ฒํธ: <span id="id"><i>${board.id } </i></span>
์์ฑ์: <span><i>${board.user.username} </i></span>
</div>
<div class="form-group">
<h3>${board.title }</h3>
</div>
<hr/>
<div class="form-group">
<div>${board.content }</div>
</div>
<hr/>
</div>
<script src="/js/board.js"></script>
<%@include file="../layout/footer.jsp"%>
5. ๊ธ ์์ธ๋ณด๊ธฐ ๊ตฌํ ์๋ฃ
๐ค๊ธ ์ญ์ ํ๊ธฐ ๊ตฌํํ๊ธฐ
1. ๊ธ ์ญ์ ๋ฒํผ ํด๋ฆญ ์ ์ญ์ ๋๋๋ก ์ฝ๋ ์ถ๊ฐ
let index = {
init: function() {
$("#btn-save").on("click", () => {
this.save();
});
$("#btn-delete").on("click", () => {
this.deleteById();
});
},
deleteById: function() {
let id = $("#id").text();
$.ajax({
type: "DELETE",
url: "/api/board/" + id,
dataType: "json"
}).done(function(resp) {
alert("์ญ์ ๊ฐ ์๋ฃ๋์์ต๋๋ค.");
//console.log(resp);
location.href = "/";
}).fail(function(error) {
alert(JSON.stringify(error));
});
}
}
2. BoardApiController ์์ฑ
@DeleteMapping("/api/board/{id}")
public ResponseDto<Integer> deleteById(@PathVariable int id){
boardService.๊ธ์ญ์ ํ๊ธฐ(id);
return new ResponseDto<Integer>(HttpStatus.OK.value(),1);
}
3. BoardService ์์ฑ
@Transactional
public void ๊ธ์ญ์ ํ๊ธฐ(int id) {
boardRepository.deleteById(id);
}
4. ์ญ์ ์๋ฃ
๐ค๊ธ ์์ ํ๊ธฐ ๊ตฌํํ๊ธฐ
1. BoardController ์์ฑ
//๊ธ ์์ ํ๊ธฐ
@GetMapping("/board/{id}/updateForm")
public String updateForm(@PathVariable int id, Model model) {
model.addAttribute("board",boardService.๊ธ์์ธ๋ณด๊ธฐ(id));
return "board/updateForm";
}
2. ์์ ํ๊ธฐ๋ ๋ฒํผ ๋์ <a>๋งํฌ๋ฅผ ๊ฑธ์ด๋๋ค.
3. update ์๋ฐ์คํฌ๋ฆฝํธ ์ฝ๋ ์์ฑ
let index = {
init: function() {
$("#btn-save").on("click", () => {
this.save();
});
$("#btn-delete").on("click", () => {
this.deleteById();
});
$("#btn-update").on("click", () => {
this.update();
});
},
update: function() {
let id = $("#id").val();
let data = {
title: $("#title").val(),
content: $("#content").val()
};
$.ajax({
type: "PUT",
url: "/api/board/"+id,
data: JSON.stringify(data),
contentType: "application/json; charset=utf-8",
dataType: "json"
}).done(function(resp) {
alert("๊ธ ์์ ์ด ์๋ฃ๋์์ต๋๋ค.");
location.href = "/";
}).fail(function(error) {
alert(JSON.stringify(error));
});
}
}
4. updateForm.jsp ์์ฑ
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@include file="../layout/header.jsp"%>
<div class="container">
<form>
<input type="hidden" id="id" value="${board.id }">
<div class="form-group">
<input type="text" class="form-control" value="${board.title }" placeholder="Enter title" id="title">
</div>
<div class="form-group">
<textarea class="form-control summernote" rows="5" id="content">${board.content }</textarea>
</div>
</form>
<button id="btn-update" 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"%>
5. BoardApiController ์์ฑ
@PutMapping("/api/board/{id}")
public ResponseDto<Integer> update(@PathVariable int id, @RequestBody Board board){
boardService.๊ธ์์ ํ๊ธฐ(id, board);
return new ResponseDto<Integer>(HttpStatus.OK.value(),1);
}
6. ๊ธ ์์ ๊ตฌํ ์๋ฃ


'Springboot > Springboot Blog Project' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
์นด์นด์ค ๋ก๊ทธ์ธ API ์๋น์ค ๊ตฌํํ๊ธฐ (0) | 2022.09.25 |
---|---|
์คํ๋ง ์๋ ์๋ฆฌ ๋ณต์ต! ์ค์โโ (0) | 2022.09.25 |
๊ธ์ฐ๊ธฐ, ๊ธ ๋ชฉ๋ก๋ณด๊ธฐ, ํ์ด์ง ๊ตฌํํ๊ธฐ (0) | 2022.09.25 |
๋น๋ฐ๋ฒํธ ํด์ฌํ(์ํธํ), ์คํ๋ง ์ํ๋ฆฌํฐ ๋ก๊ทธ์ธ ๊ตฌํํ๊ธฐ (0) | 2022.09.24 |
๋ธ๋ก๊ทธ ํ๋ก์ ํธ ์ ํต์ ์ธ ๋ฐฉ์์ ๋ก๊ทธ์ธ ๋ฐฉ๋ฒ (0) | 2022.09.24 |