sej226 / spring-boot

SpringBoot 기반의 게시판 만들기
1 stars 0 forks source link

2019.06.03_이미지 파일 업로드 및 memberController 구현 #6

Closed sej226 closed 5 years ago

sej226 commented 5 years ago

1. 이미지 파일 업로드

Ajax 방식 업로드 시도

2. Controller 구현

@RequestMapping(value = "/selectAllHumor", method =  RequestMethod.GET)
   public ResponseEntity<List<Humor>> selectAllHumor() throws Exception {
      List<Humor> humors = humorService.selectAllHumor();
      return new ResponseEntity<List<Humor>>(humors, HttpStatus.OK);
  }

초기 게시글 조회 화면