validator 재 질문입니다. 제가 콘트롤러 를 잘못 첨부했습니다.
- 작성자 :
- 백*진
- 작성일 :
- 2014-02-11 16:46:41
- 조회수 :
- 665
- 구분 :
- 개발환경
- 진행상태 :
- 완료
Q
안녕하세요?
validator 재 질문입니다. 제가 콘트롤러 를 잘못 첨부해서 재 첨부합니다.
validation 화면단의 매뉴얼 대로 했봤는데
script 의 validateLoginForm 함수가 생성이 되지 않습니다.
소스보내드리니 제가 누락된부분이 있는지 검토 부탁드립니다.
control 파일 ,jsp 파일 , validation xml 파일 첨부합니다.
감사합니다.
validator 재 질문입니다. 제가 콘트롤러 를 잘못 첨부해서 재 첨부합니다.
validation 화면단의 매뉴얼 대로 했봤는데
script 의 validateLoginForm 함수가 생성이 되지 않습니다.
소스보내드리니 제가 누락된부분이 있는지 검토 부탁드립니다.
control 파일 ,jsp 파일 , validation xml 파일 첨부합니다.
감사합니다.
첨부파일
A
안녕하세요. 백영진님
ApplcationContext 설정상에 아래 예시와 같이 설정된 부분이 있는 지 확인해 보시고,
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<!-- Integration Apache Commons Validator by Spring Modules -->
<bean id="beanValidator" class="org.springmodules.validation.commons.DefaultBeanValidator">
<property name="validatorFactory" ref="validatorFactory"/>
</bean>
<bean id="validatorFactory" class="org.springmodules.validation.commons.DefaultValidatorFactory">
<property name="validationConfigLocations">
<list>
<value>classpath:/validator.xml</value>
<value>classpath:/validator-rule.xml</value>
</list>
</property>
</bean>
</beans>
브라우저에서 /comm/validator.do 로 호출해보시면 해당 vaildation이 다운로드 가능해야 합니다.
고맙습니다.
ApplcationContext 설정상에 아래 예시와 같이 설정된 부분이 있는 지 확인해 보시고,
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<!-- Integration Apache Commons Validator by Spring Modules -->
<bean id="beanValidator" class="org.springmodules.validation.commons.DefaultBeanValidator">
<property name="validatorFactory" ref="validatorFactory"/>
</bean>
<bean id="validatorFactory" class="org.springmodules.validation.commons.DefaultValidatorFactory">
<property name="validationConfigLocations">
<list>
<value>classpath:/validator.xml</value>
<value>classpath:/validator-rule.xml</value>
</list>
</property>
</bean>
</beans>
브라우저에서 /comm/validator.do 로 호출해보시면 해당 vaildation이 다운로드 가능해야 합니다.
고맙습니다.