繁体   English   中英

自定义验证消息未显示

[英]Custom Validation messages spring not being displayed

我目前正在使用以下环境:

  • Netbeans 8
  • 杰克1.7
  • 春天4
  • 休眠5.0.1
  • Bean验证器1.1

我有以下文件:

  • Servlet配置(Spring):

      <context:component-scan base-package="mz.co.hypervision.web" /> <mvc:annotation-driven /> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/" /> <property name="suffix" value=".jsp" /> </bean> <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basename" value="messages"/> </bean> 

学生班:

   public class Student {
   @NotNull(message = "{age.notnull}")
   private Integer age;
   private String name;
   private Integer id;

   public void setAge(Integer age) {
      this.age = age;
   }
   public Integer getAge() {
      return age;
   }

   public void setName(String name) {
      this.name = name;
   }
   public String getName() {
      return name;
   }

   public void setId(Integer id) {
      this.id = id;
   }
   public Integer getId() {
      return id;
   }
}

消息属性文件:

位置:SpringTest \\ build \\ web \\ WEB-INF \\ classes

# To change this license header, choose License Headers in Project Properties.
# To change this template file, choose Tools | Templates
# and open the template in the editor.

age.notnull=The age of the student may not be null

更新

控制器代码:

import javax.validation.Valid;
import mz.co.hypervision.domain.Student;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.ui.ModelMap;
import org.springframework.validation.BindingResult;

@Controller
public class StudentController {

   @RequestMapping(value = "/student", method = RequestMethod.GET)
   public ModelAndView student() {
      return new ModelAndView("student", "student", new Student());
   }

   @RequestMapping(value = "/addStudent", method = RequestMethod.POST)
   public String addStudent(@ModelAttribute("student") @Valid Student student, 
   BindingResult result, ModelMap model) {

      if(result.hasErrors()) {

          return "student";
      } else {
        model.addAttribute("name", student.getName());
        model.addAttribute("age", student.getAge());
        model.addAttribute("id", student.getId());

        return "result";
      }
   }
}

请在下面检查消息是否显示为{age.notnull}:

形象与情况

请协助找出原因,根据我的观点,我已按照每个步骤进行操作

通过将messages.properties文件添加到java classpath中解决了该问题。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM