Spring @Value添加验证小于

时间:2015-07-02 05:55:33

标签: java spring

我使用以下属性值注入。我如何为此操作添加少于验证。 我的意思是我想设置一个验证, try this easy way. no need of jquery. <html> <head> </head> <body> <h1 id="popup">dfdfs</h1> <script type="text/javascript"> if(document.getElementById("popup")) { window.alert("hi"); } </script> </body> </html> 属性值不得小于100。

user.maxpassiveday

使用Spring 3.1.1版本

1 个答案:

答案 0 :(得分:6)

你也可以在setter方法上使用@Value:

int maxpassiveday;

@Value("${user.maxpassiveday}")
public void setMaxPassiveDay(final String maxpassiveday) {
   int tmp = Integer.parseInt(maxpassiveday);
   if (tmp < 100) {
      this.maxpassiveday = tmp;
   }
}