如何正确使用限制注释和标签
我想在接缝应用程序中使用@Restrict。我的一个场景包含一系列操作。我需要限制每一个动作还是只限制开始动作?除第一个操作外的所有操作均从第一个操作调用。
I would like to use @Restrict in seam application. One of my scenario contains a series of actions. Do i need to restrict each and every action or only the starting action? All the actions except first is invoked from first action.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它们是私有方法,那么您不需要限制它们。
但是,如果它们是公共方法,则应该限制它们,因为可以从参数调用方法。
如果您使用
@Restrict
注释来注释class
,则所有方法都将受到限制。If they are private methods then you don't need to restrict them.
However, if they are public methods, you should restrict them, because it is possible to call methods from the parameter.
If you annotate the
class
with the@Restrict
annotation, then all the methods will be restricted.