和有什么不一样?和春季DM
spring DM的xml配置文件中的
和
有什么区别?
what is the difference between <osgi:reference>
and <osgi:service>
in the xml config file of spring DM.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可用于获取对现有 OSGi 服务的引用,以便您的 bean 可以使用它。
可用于导出 bean 作为 OSGi 服务,以便其他人使用。<osgi:reference>
can be used to get a reference to existing OSGi service so your bean can use it.<osgi:service>
can be used to export a bean as an OSGi service so it can be used by others.