如何验证 GWT 中的 cron 表达式
我有一个 GWT 应用程序,它允许用户在文本字段中输入 cron 表达式。 cron 表达式最终用在服务器上的quartz 调度程序中。我想知道是否有一种方法可以验证用户输入的表达式而无需返回服务器?
I have a GWT application which allows the user to enter a cron expression in a TextField. The cron expression is eventually used in a quartz scheduler on the server. I'm wondering is there a way I can validate the expression the user enters without going back to the server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以执行自己的字符串解析或应用正则表达式。
看看这个类似的问题。
You can perform your own string parsing or apply a regex.
Take a look at this similar SO question.
使用 Bean 验证 JSR 303 进行服务器端验证。这是我博客上的一个示例,介绍如何为 cron 表达式编写自定义验证器
http: //www.bagdemir.com/2011/04/27/bean-validation-jsr-303-and-validating-cron-expressions-extending-constraints/
Use Bean validation JSR 303 for serverside validation. Here is an example on my blog about how to Write a custom validator for cron expressions
http://www.bagdemir.com/2011/04/27/bean-validation-jsr-303-and-validating-cron-expressions-extending-constraints/