Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 토비의스프링
- String
- springboot
- beanfactory
- 링킹
- JPA
- java
- Immutable
- springwebmvc
- Spring
- gradle
- hibernate
- 자바
- 메이븐
- 클린코드
- ORM
- 컴퓨터시스템
- 링커
- AutoConfiguration
- DesignPattern
- 토비의스프링3.1
- 프록시
- ApplicationContext
- Kotlin for Java Developers
- 빌드툴
- FunctionalInterfaces
- exception
- IOC
- lambda
- DispatcherServlet
Archives
- Today
- Total
목록DataBinder (1)
엔지니어로 가는 길
@InitBinder와 WebDataBinder의 쓰임
@InitBinder @Controller나 @ControllerAdvice가 붙은 클래스는 @InitBinder가 붙은 메소드를 가질 수 있다. 이는 WebDataBinder라는 인스턴스를 초기화하는 메소드이다. WebDataBinder 1. 요청 매개변수(form 또는 query 데이터)를 모델 객체에 바인딩한다. Thymeleaf는 익숙하지 않기 때문에 다 이해할 수는 없지만 확실한 것은 owner와 관련된 정보를 input 태그를 이용하여 사용자로부터 입력받고 있다는 것이다. 사용자가 입력을 마치고 submit을 누르면 post 요청이 될 것이고 이걸 아래의 OwnerController의 메소드에서 잡을 것이다. processCreationForm 메소드에 Owner 타입의 인자가 있다. Owne..
프로그래밍/Spring
2021. 4. 11. 22:07