์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
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 |
- ๋จ์ํ ์คํธ
- ์ปดํจํฐ๊ณตํ
- boj11653
- ์ฝ๋ฉ
- ๋ฐฑ์คํ์ด
- ๋ฆฌ์กํธ
- spring
- ๋ฆฌ์กํธ๋ค์ดํฐ๋ธ
- ์๋ฃ๊ตฌ์กฐ
- ์ปด๊ณต
- ์ปด๊ณต์
- ๊ทธ๋ฆฌ๋
- ์น๊ฐ๋ฐ
- ๊ฐ๋ฐ์
- ์คํ๋ง
- ๋ฐฑ์๋
- ํ๋ก ํธ์ค๋
- ์๊ณ ๋ฆฌ์ฆ
- ChatGPT
- ํ์ด์ฌ
- ์ฝ๋ฉํ ์คํธ
- ์ดํญ๊ณ์
- SSE
- ๋ชจ๋ฐ์ผ์ฑํ๋ก๊ทธ๋๋ฐ
- ๋ฐฑ์ค
- ๊ทธ๋ฆฌ๋์๊ณ ๋ฆฌ์ฆ
- ๋ฐฑ์ค1436
- ํ๋ก๊ทธ๋๋ฐ
- ์น๊ฐ๋ฐ๊ธฐ๋ก
- ์ฐ์ ์์ํ
- Today
- Total
๐ป๐ญ๐ง๐
[์น ๊ฐ๋ฐ ํ๋ก์ ํธ] 5. ๋ชจ์ง๊ธ ์์ /์ญ์ / ๋ชฉ๋ก ์กฐํ ๊ตฌํ ๋ณธ๋ฌธ
[์น ๊ฐ๋ฐ ํ๋ก์ ํธ] 5. ๋ชจ์ง๊ธ ์์ /์ญ์ / ๋ชฉ๋ก ์กฐํ ๊ตฌํ
adorableco 2024. 1. 14. 12:57์์ ๊ณผ ์ญ์ ๋ ์์๋๋ก ์ฌ์ ๋ค! ์๋ก์ด ํด๋์ค ์์ฑ์ด ์์ผ๋ฏ๋ก ํจํค์ง ๊ณ์ธต ๊ตฌ์กฐ๋ ๊ทธ๋๋ก๋ ์คํต!
1. ๋ชจ์ง๊ธ ์ญ์
public String deleteById(Long id){
try{
postRepository.deleteById(id);
return "๋ชจ์ง๊ธ ์ญ์ ์๋ฃ";
}catch (Exception e){
return "๋ชจ์ง๊ธ ์ญ์ ์คํจ " + e;
}
}
์ Jpa๋ผ๋๊ฑฐ.. ์ ๋ง ๋ฌ๋ค
๋ชจ์ง๊ธ id๋ฅผ ์ ๋ฌ ์ธ์๋ก ๋ฐ์ JpaRepository
๋ฅผ ์์๋ฐ๋ PostRepository์ deleteById
๋ฉ์๋๋ฅผ ์ด์ฉํ์ฌ ํด๋น ๋ชจ์ง๊ธ์ ์ญ์ ํ๋ค.
@DeleteMapping("/api/post/{id}")
public ResponseEntity<String> deletePostById(@PathVariable Long id) {
return ResponseEntity.ok().body(postService.deleteById(id));
}
์ญ์ ์๋ฃ ์, ๋ฉ์๋์์ ๋ฐํ๋๋ ๊ฒฐ๊ณผ String์ response body์ ๋ด์ ๋ณด๋ธ๋ค.
2. ๋ชจ์ง๊ธ ์์
@Transactional
public String updatePost(Long id, AddPostRequest dto){
Post post = postRepository.findById(id).get();
Match match = matchRepository.findById(post.getMatch().getMatchId()).get();
Tag tag = tagRepository.findById(post.getTag().getTagId()).get();
post.setTitle(dto.getTitle());
post.setContent(dto.getContent());
match.setMatchDate(dto.getMatch().getMatchDate());
match.setPlace(dto.getMatch().getPlace());
match.setHeadCnt(dto.getMatch().getHeadCnt());
tag.setAgeType(dto.getTag().getAgeType());
tag.setGenderType(dto.getTag().getGenderType());
tag.setLevelType(dto.getTag().getLevelType());
return "๋ชจ์ง๊ธ ์์ ์๋ฃ";
}
@Transactional
์ ํธ๋ฆฌํจ์ ์ฒ์ ์๊ฒ ๋์๋ค. ์ด ์ด๋
ธํ
์ด์
์ด ๋ถ์ด์๋ ๋ฉ์๋ ๋ด์์ ์ํฐํฐ ์นผ๋ผ์ ์
๋ฐ์ดํธ๊ฐ ๋ฐ์ํ๋ฉด ์๋์ผ๋ก ๋ฐ์ดํฐ๋ฒ ์ด์ค์ ๋ฐ์์ด ๋๋ค๊ณ ํ๋ค. ์ ์ฝ๋ ๊ฐ์ ๊ฒฝ์ฐ์๋ ์
๋ฐ์ดํธ๊ฐ ๋ฐ์ํ์ง ์์ ์นผ๋ผ๋ค๋ ๋ชจ๋ ์
๋ฐ์ดํธ๊ฐ ๋์ง๋ง @DynamicUpdate
์ด๋
ธํ
์ด์
์ ์ฌ์ฉํ๋ฉด ์ค์ ์
๋ฐ์ดํธ๊ฐ ์ผ์ด๋ ์นผ๋ผ๋ง ๋ฐ์ดํฐ๋ฒ ์ด์ค์ ๋ฐ์๋๋ค๊ณ ํ๋ ์ถํ์ ๋ณ๊ฒฝ์ ๊ณ ๋ คํด๋ด์ผ๊ฒ ๋ค. ์ฌ์ค ์ฝ๋์ ์ฌ์ฉ์ ํ์ง๋ง Jpa ์ ์ฌ๋ฌ ๊ธฐ๋ฅ๋ค์ ๋ํด ์ ๋ชจ๋ฅด๋ ๊ฒ ๊ฐ์์ ๋ฐ๋ก ๊ณต๋ถ๋ฅผ ํด์ผ๊ฒ ๋ค๋ ์๊ฐ์ ํ๋ค.
@PutMapping("/api/post/{id}")
public ResponseEntity<String> modifyPostById(@PathVariable Long id, @RequestBody AddPostRequest dto) {
return ResponseEntity.ok().body(postService.updatePost(id,dto));
}
์ฐธ๊ณ ๋ก ์์ api ์์ฒญ ์ request dto๋ ๋ชจ์ง๊ธ ๋ฑ๋ก request dto๋ฅผ ๊ทธ๋๋ก ์ฌ์ฉํ์๋ค. ๋ฉ์๋์ String์ ๋ฐํ๋ฐ์์ ์์ฒญ ๊ฒฐ๊ณผ๋ฅผ response body์ ๋ด์ ๋ณด๋ธ๋ค.
๊ทธ๋ฆฌ๊ณ ๊ฐ๋ฐ ์ค์ ์ผ์ด๋ ํ๊ฐ์ง ์ด์..
๋น์ฅ ๋ฐฑ์๋ ์๋ฒ๋ฅผ ํ๊ธฐ๋ณด๋ค๋ ๋ฐ๋ก ํ ์คํธ๋ฅผ ํด๋ด์ผ ํ ์ํฉ์ด๋ผ ํ๋ก ํธ ์ชฝ์์ mariadb๋ฅผ ์ผ๊ณ ์คํ๋ง ์ดํ๋ฆฌ์ผ์ด์ ์ ๋ฐ๋ก ์คํํด๋ณด๋ ค๊ณ ํ๋๋ฐ ์๋์ ๊ฐ์ ์ด์๊ฐ ๋ฐ์ํ๋ค.
ERROR 12568 --- [nio-8080-exec-7] o.h.engine.jdbc.spi.SqlExceptionHelper : (conn=74) Incorrect string value: '\xEC\xB4\x88\xEB\x93\xB1...' for column `springdb`.`matches`.`place` at row 1
์ญ์ ๋ด PC์์ ์๋๋๊ฒ ๋ค๋ฅธ PC์์๋ ์๋์ด ์๋ ์ ์๊ตฌ๋.. ์๊ฐํ๊ณ ๋ฌธ์ ๋ฅผ ํ์ ํด๋ณด๋ MySql์ ํ๊ธ ๋ฐ์ดํฐ๋ฅผ ์ ๋ ฅํ๋ ค๋ฉด ์ค๋ฅ๊ฐ ๋๋ ๊ฒฝ์ฐ๊ฐ ์๋ค๊ณ ํ๋ค.
๋ฌธ์ ํ์
์ ์ ํน์๋ํด์ request body์ ํ๋๋ช
์ name
์์ Name
(๋๋ฌธ์ ๋ณ๊ฒฝ)์ผ๋ก ๋ฐ๊พธ๋ ์ ์์ ์ผ๋ก ์คํ์ ๋๋ค. ๊ทธ๋๋ ์ด๋ ๊ฒ ๋๋ค๊ณ ํด๋ ๋ง์ด ์๋๊ธฐ ๋๋ฌธ์.... ํด๊ฒฐ ๋ฐฉ๋ฒ์ ์ฐพ์๋ณด๋ ์ธ์ฝ๋ฉ ์ค์ ์ฌํญ์ ๋ณ๊ฒฝํด์ฃผ๋ฉด ๋๋ค๊ณ ํ๋ค.
ALTER TABLE (ํ
์ด๋ธ๋ช
) convert to charset utf8;
๋งฅ์์ ๊ฐ๋ฐํ๋๊ฑธ ์๋์ฐ์์ ์ด์ด์ ๊ทธ๋ฐ๊ฑด๊ฐ? ๋ชจ๋ฅด๊ฒ ๋ค
๋ชจ์ง๊ธ ๋ชฉ๋ก ์กฐํ
๋ฏธ๋ฆฌ ๊ฐ๋ตํ๊ฒ ๋ง๋ค์ด๋ฌ์, ๊ฑฐ๊ธฐ์ ํํฐ๋ง์ ํ ์ ์๋๋ก ์ฟผ๋ฆฌ ์คํธ๋ง์ ๋ฐ๋ ๊ฒ๋ง ๋ ์ถ๊ฐํ์๋ค.
public interface PostRepository extends JpaRepository<Post, Long> {
List<Post> findByCategory(String category);
}
PostRepository
์ ์นดํ
๊ณ ๋ฆฌ๋ก post๋ฅผ ์ฐพ์ ์ ์๋๋ก ๋ฉ์๋๋ฅผ ํ๋ ์ถ๊ฐํด์ค๋ค. ์ด์ ๊ณผ ๋ง์ฐฌ๊ฐ์ง๋ก PostService
์๋ findByCategory
๋ฉ์๋๋ฅผ ์์ฑํ๊ณ postRepository
์ ๋ฉ์๋๋ฅผ ๋ฐํํ๋๋ก ํด๋๋ฉด ๋๋ค!
@GetMapping("/api/posts")
public ResponseEntity<List<PostResponse>> findPosts(@RequestParam("category") String category) {
List<PostResponse> posts;
if (category == null) {
posts = postService.findAll()
.stream()
.map((Post post) -> new PostResponse(post))
.toList();
} else {
posts = postService.findByCategory(category)
.stream()
.map((Post post) -> new PostResponse(post))
.toList();
}
return ResponseEntity.ok()
.body(posts);
}
ํ๊ทธ์ ๋์ด๋, ์ฑ๋ณ, ์์ค ๋ณ๋ก๋ ํํฐ๋ง์ ํด์ผํ์ง๋ง ์ผ๋จ์ ์นดํ
๊ณ ๋ฆฌ๋ง ๊ตฌํํด๋ณธ๋ค. requestParam ์ผ๋ก category ๊ฐ ๋ค์ด์ค๋ฉด findByCategory()
๋ฉ์๋๋ก ํด๋น ์นดํ
๊ณ ๋ฆฌ์ ๋ชจ์ง๊ธ๋ง ๋ฆฌ์คํธ๋ก ๋ง๋ค ์ ์๋๋ก ํ๊ณ , ์๋ฌด ๊ฒ๋ ๋ค์ด์ค์ง ์์ category๊ฐ null ์ด๋ผ๋ฉด ์ ์ฒด ๋ชจ์ง๊ธ ๋ฆฌ์คํธ๋ฅผ ๋ง๋ค ์ ์๋๋ก findAll()
๋ฉ์๋๋ฅผ ์ด์ฉํ๋ค.
๋ค์ ํ ์ผ
- ๊ฒฝ๊ธฐ ์ฐธ๊ฐ ์ ์ฒญ ๊ธฐ๋ฅ ๊ตฌํ
์์ข์ข