728x90
반응형
몽고로 전체조회 ✨
@GetMapping("")
@ResponseBody
public ResponseEntity<List<NoticeDto>> getNoticeByAll( ) {
return ResponseEntity.ok().body(
service.getNoticeByAll()
);
}
NoticeRepository repository;
MongoTemplate template;
public List<NoticeDto> getNoticeByAll() {
return repository.findAll().stream().map(vo -> new NoticeDto(vo)).collect(Collectors.toList());
}
🧡글이 도움이 되었다면 코로나 때문에 재택하는 디벨빈수 구경가주세요💛
728x90
반응형
'PROJECT > 스프링부트+JPA+몽고 API 개발' 카테고리의 다른 글
2️⃣ 몽고랑 프로젝트 연동 (0) | 2022.02.07 |
---|---|
1️⃣ 프로젝트 세팅 (0) | 2022.02.07 |