“应用程序”之间的区别文件夹和“热部署” ofbiz 中的文件夹?
我是 ofbiz 的新手。我在“ofbiz/hot-deploy”文件夹中创建一个应用程序。在某些网站中,他们提到我们的应用程序的书籍也应该出现在“应用程序”文件夹中。但我不知道将用户定义的应用程序放入 ofbiz 文件夹中(即“热部署”和“应用程序”)之间的区别。
请说出区别,因为这对我的项目非常有用。请原谅我的问题中的错误,因为我是 ofbiz 的新手。
谢谢&问候, 西瓦库玛尔
I'm new to ofbiz. I create an application in my "ofbiz/hot-deploy" folder. In some site, books they mention our application should be present in "applications" folders also. But I don't know the difference between put user defined applications in the folders namely "hot-deploy" and "applications" in ofbiz.
Please tell the difference, because it will be very useful to my project. Please forgive my mistakes in my questions because I'm new to ofbiz .
Thanks & Regards,
Sivakumar.J
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应用程序是 OFBiz 框架提供的 OOTB 应用程序(例如营销、订单、聚会)所在的位置。最好不要把你的东西放在那里,这样你就可以与下一版本的 Ofbiz 向前集成。
应用程序组件:它们是通用应用程序,可以按原样使用或扩展/定制(产品、订单、聚会、制造、会计等);应用程序组件可以访问框架组件提供的服务和工具,以及其他应用程序组件发布的服务。
热部署是放置自定义应用程序的地方,它还可以访问框架组件底层的服务。框架。
因此,如果您创建一个新应用程序(例如 SivakumarWebApp),然后将其放入热部署中,它就可以访问框架组件以及其他应用程序组件。
http://www.hotwaxmedia.com/ apache-ofbiz-blog/ofbiz-tutorial-custom-components-in-ofbiz/
applications is where the OOTB apps provided with the OFBiz framework like marekting, order, party reside. It is best NOT to put your stuff there so you can forward integrate with the next version of Ofbiz.
application components: they are generic applications that can be used as they are or extended/customized (product, order, party, manufacturing, accounting etc…); application components have access to the services and tools provided by the framework components and to the services published by other application components
hot-deploy is where you put your custom application which also has access to the services underlying from the framework.
So if you make a new application say SivakumarWebApp then place it in the hot-deploy, and it can access the framework components as well as other application components.
http://www.hotwaxmedia.com/apache-ofbiz-blog/ofbiz-tutorial-custom-components-in-ofbiz/