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
- Form Stuff
- 안드로이드 개발
- MapView
- android
- 스카이 안드로이드폰 시리우스 K양 동영상
- 안드로이드 2.0 개발
- 영어
- 안드로이드 개발 2.0
- 안드로이드폰
- 안드로이드2.0
- objective-c
- 아이폰 바탕화면
- 스카이 안드로이드폰 시리우스
- 인기있는 블로그 만들기
- 구글안드로이드
- 안드로이드
- sky 시리우스폰
- 스마트폰 배경화면
- 안드로이드2.0개발
- 안드로이드 배경화면
- 안드로이드 개발 2.0 강좌
- 아이폰 배경화면
- 하루 한마디 영어
- 구글 안드로이드
- SKY 시리우스
- 안드로이드 바탕화면
- 안드로이드개발
- 구글 안드로이드 개발
- 안드로이드 개발 강좌
- 하루한마디영어
Archives
- Today
- Total
moozi
Service 본문
package com.mycompany.memo.service;
import com.mycompany.memo.dto.MemoDTO;
import com.mycompany.memo.entity.Memo;
import java.util.List;
public interface MemoService {
//목록
List<MemoDTO> getList();
//등록
Long register(MemoDTO dto);
//상세보기
MemoDTO read(Long mno);
//수정
void modify(MemoDTO dto);
//삭제
void remove(Long mno);
//Entity to DTO
default MemoDTO entityToDto(Memo entity){
MemoDTO dto=MemoDTO.builder()
.mno(entity.getMno())
.title(entity.getTitle())
.content(entity.getContent())
.build();
return dto;
}
default Memo dtoToEntity(MemoDTO dto){
Memo entity=Memo.builder()
.mno(dto.getMno())
.title(dto.getTitle())
.content(dto.getContent())
.build();
return entity;
}
}
'Spring Boot JPA' 카테고리의 다른 글
Controller (0) | 2022.05.30 |
---|---|
ServiceImpl (0) | 2022.05.30 |
Repository (0) | 2022.05.30 |
Entity, DTO (0) | 2022.05.30 |
Memo 프로젝트 생성 (0) | 2022.05.30 |
Comments