본문 바로가기
국비교육

국비교육 75일차

by Diligejy 2019. 3. 25.

1.


2.

@PostMapping("/files/{path}")
public String upload(...) {
    // ...
    return "redirect:files/{path}";
}


redirect : 로 하면 바로 넘어간다.



3.

VO만드는데 일회성으로 만들고 싶을 때 Account와 같이 만들 수 있스무니다.


4.

ModelAttribute - 객체를 생성한 것 처럼 인식 한다. 즉, VO라고 인식한다.


5.

@Controller
public class FormController {

    @InitBinder 
    public void initBinder(WebDataBinder binder) {
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
        dateFormat.setLenient(false);
        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, false));
    }

    // ...
}


백엔드에서 검증하는 태그 


6.


7.

'국비교육' 카테고리의 다른 글

MongoDB 수업 1일차 - 개론  (0) 2019.04.15
국비교육 76일차  (0) 2019.03.26
국비교육 74일차  (0) 2019.03.22
국비교육 73일차  (0) 2019.03.21
국비교육 72일차  (0) 2019.03.20

댓글