我在我的spring mvc项目中使用了@Size和@valid注释,但它没有工作,也没有显示我要显示的消息。
答案 0 :(得分:0)
从以下链接下载zip文件:http://hibernate.org/validator/downloads/
拉链文件
复制所有文件夹hibernate-validator-x.x.x / dist / lib / required (如果文件夹中没有 hibernate-validator-x.x.x.Final.jar 文件,请下载并复制此jar。)
将jar粘贴到spring mvc项目的 / WEB-INF / lib 文件夹中。
将所需的代码添加到spring-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:annotation-config/>
<context:component-scan base-package="com.parth.hellocontroller"></context:component-scan>
<mvc:annotation-driven/>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="/WEB-INF/studentmessages"></property>
</bean>
答案 1 :(得分:0)
@size
和@valid
注释并导入这些内容
完成