에러정보 추가할때
<form:form commandName="loginCommand">
result.rejectValue("member_domain" , "invalidIdOrPassword");
1. @Valid LoginCommand -> LoginCommon 에 member_domain추가
2. invalidIdOrPassword -> validation.properties에 추가
3. jsp 파일에 : <form:errors path="member_domain" /> 추가
<spring:hasBindErrors name="command" /> 일때 에러 정보 추가
result.rejectValue("message" , "invalidIdOrPassword");
1. @ModelAttribute("command") MemberVo memberVo -> MemberVo 에 message 추가
2. invalidIdOrPassword -> validation.properties에 추가
3. jsp 파일에 : <form:errors path="command.message" /> 추가
'Spring 공부' 카테고리의 다른 글
[펌]Mybatis Spring Annotation 적용 샘플 (0) | 2013.05.06 |
---|---|
log4j (0) | 2013.04.30 |
[펌]spring 웹 어플리케이션 기반의 web.xml 설정 정리 (0) | 2013.04.16 |
스프링 정리 잘되어 있는 블로그 (1) | 2013.04.12 |
스프링에서 AOP 설정 (0) | 2013.04.10 |