[에러노트 : 스프링] Neither BindingResult nor plain target object for bean name 'loginCommand' available as request attribute

Yuri Lee·2022년 7월 26일
0

에러노트

목록 보기
1/2

Neither BindingResult nor plain target object for bean name 'loginCommand' available as request attribute

@RequestMapping("/login")
	public String form(LoginCommand loginCommand, @CookieValue(value="REMEMBER", required=false) Cookie rCookie){
		if(rCookie !=null) {
			loginCommand.setId(rCookie.getValue());
			loginCommand.setRememberId(true);
		}
		return "/login";
	}

커맨드객체가 필요한 view 페이지로 넘어갈 때 파라미터에 커맨드객체를 받아서 보내니까 해결됨

profile
개발자 이유리

0개의 댓글