Notice
Recent Posts
Recent Comments
Link
목록스프링시큐리티 (1)
개발 무지렁이
[Spring Boot] 폼과 폼 Validation
폼 폼은 URL 생성기이다. [question_form.html] // post이고, th:action="@{}"를 붙여주면 스프링 시큐리티가 csrf토큰을 알아서 만들어준다 제목 내용 [QuestionController.java] ⚠️ form에서 정해준 name과 같게, Controller에서 파라미터 이름을 지정해 줘야 한다 @RequestMapping("/question") @RequiredArgsConstructor @Controller public class QuestionController { @GetMapping("question/create") public String showCreate() { return "question_form"; } @PostMapping("question/cre..
Backend/스프링부트
2022. 11. 28. 10:53