如何在struts2中的validation.xml中获取当前系统日期
我想将日期字段与当前日期进行比较。 为此,我需要将当前日期放入validation.xml文件中 这样我就可以比较它 我怎样才能实现它 我正在使用 struts2
谢谢
i want to compare the date field with the current date.
for that i need current date into the validation.xml file
so that i can compare it
how can i implement it
i m using struts2
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以使用 表达式验证器 。它允许您指定 OGNL 表达式。结合 OGNL 调用静态方法的能力,您也许能够将某些内容组合在一起,例如:
myDate < @java.util.Calendar@getInstance().time
我不确定这是否真的有效,因为我从未尝试过。
You might be able to get something working with the expression validator. It lets you specify an OGNL expression. Combined with OGNL's ability to call static methods, you might be able to hack something together like:
myDate < @java.util.Calendar@getInstance().time
I'm not sure this would actually work though, as I've never tried it.