스프링 MVC Request 요청이 오면 매번 새로운 객체가 생성 됨.
Request 를 2번 요청하여 각각의 객체의 hash값을 보면 다른 걸 확인 할 수 있다.
toString() 으로 객체의 hash 값을 보면 다르다.
@RequestMapping(value = "/register", method = RequestMethod.POST)
public String register(Locale locale, Model model, @ModelAttribute TestRegisterRequest testRegisterRequest) {
logger.debug(informationRegisterRequest.toString());
return "redirect:/test/list";
DEBUG 18048 --- [nio-7070-exec-5] c.l.controller.TestController : com.test.domain.TestRegisterRequest@102c9245
DEBUG 18048 --- [nio-7070-exec-8] c.l.controller.TestController : com.test.domain.TestRegisterRequest@177cf690
'spring-project' 카테고리의 다른 글
lombok (롬복) 설치하기. (0) | 2020.01.05 |
---|---|
spring security 로그인 username 가져오기 (0) | 2020.01.03 |
Spring Boot 에서 JSP 사용하기 위한 라이브러리 추가 (0) | 2019.09.13 |
Spring Boot 최초 실행 시 'Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. ' (0) | 2019.09.10 |
Spring Security를 이용한 Basic Authentication (0) | 2019.03.01 |