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
- java
- SQL
- DTO
- 부트캠프
- git
- 알고리즘
- 자바
- html tag
- github
- HTML
- @AllArgsConstructor
- 코드업
- 상속
- 기본생성자
- CRUD
- 프로그래머스
- @NoArgsConstructor
- 부스트코스
- 깃허브
- lv1
- entity
- 에러
- stringbuffer
- 브랜치
- Python
- @builder
- HashSet
- 파이썬
- 캡슐화
- Codeup
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