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
- stringbuffer
- Codeup
- 코드업
- 부스트코스
- lv1
- 캡슐화
- 에러
- github
- entity
- 기본생성자
- @NoArgsConstructor
- SQL
- git
- 깃허브
- HashSet
- DTO
- 프로그래머스
- HTML
- @AllArgsConstructor
- 브랜치
- 파이썬
- 상속
- 부트캠프
- html tag
- CRUD
- java
- Python
- @builder
- 알고리즘
- 자바
Archives
- Today
- Total
목록댓글생성 (1)
잉?
[SpringBoot] Service단에서의 DTO <--> Entity의 변환.
Service는 비즈니스 로직이 있는 곳이다. DB 저장 또는 조회가 필요할 때 Repository에 요청하는 곳이기도 한데 요청하기 위해서는 DTO에서 Entity로 변환해줘야 한다. 그리고 요청받은 데이터(Entity)를 다시 DTO로 변환해서 컨트롤러(Controller)로 보내줘야 한다. 좀 더 자세한 정보는 https://dahlia15.tistory.com/73 그 과정을 살펴보겠다. Service public CommentResponseDto createComment(Long id, CommentRequestDto requestDto, UserDetailsImpl userDetails) { // dto -> entity Blog blog = blogRepository.findById(id)...
자바(Java)/스프링부트(SpringBoot)
2023. 7. 11. 20:58