EJB中无接口视图和接口视图的区别
EJB 中的无接口视图和接口视图有什么区别?
两者的优点和缺点。
What is difference between No-Interface View and Interface View in EJB?
Advantages and disadvantages of both of them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK EJB 3.1无接口视图意味着本地接口或代理是由容器隐式生成的,即bean的所有公共方法都被公开。
相反,提供显式接口允许您指定实际公开哪些方法以及接口的命名方式。
AFAIK EJB 3.1 no-interface view means that the local interface or proxy is implicitly generated by the container, i.e. all public methods of the bean are exposed.
In contrast, providing an explicit interface allows you to specify which methods are actually exposed and how the interface is named.