大小和有效注释在spring mvc项目中不起作用

时间:2017-01-05 12:45:03

标签: spring spring-mvc

我在我的spring mvc项目中使用了@Size和@valid注释,但它没有工作,也没有显示我要显示的消息。

2 个答案:

答案 0 :(得分:0)

  1. 从以下链接下载zip文件:http://hibernate.org/validator/downloads/

  2. 拉链文件

  3. 复制所有文件夹hibernate-validator-x.x.x / dist / lib / required (如果文件夹中没有 hibernate-validator-x.x.x.Final.jar 文件,请下载并复制此jar。)

  4. 将jar粘贴到spring mvc项目的 / WEB-INF / lib 文件夹中。

  5. 将所需的代码添加到spring-servlet.xml

  6.  
    <?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)

  1. 转到项目的属性
  2. 转到构建路径并从下载的文件中添加外部jar
  3. 右键点击@size@valid注释并导入这些内容 完成