椭圆形验证
我们可以在 isSatisfied() (类 net.sf.oval.AbstractAnnotationCheck)方法中访问请求对象,或者我们可以在此方法中传递一个额外的参数以供进一步使用。我有一个场景,我需要将区域设置信息传递给 isSatisfied() 方法并应用一些条件。
Can we access request object in isSatisfied() (class net.sf.oval.AbstractAnnotationCheck) method or can we pass an extra parameter in this method to use further. I have a scenario where I need to pass locale information to isSatisfied() method and apply some conditions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您可以简单地使用线程局部变量。 http://en.wikipedia.org/wiki/Thread-local_storage#Java
You can simply use a thread local variable for this. http://en.wikipedia.org/wiki/Thread-local_storage#Java