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.
댓글