Web / Apache OFBiz Interview questions
What is a component in OFBiz?
An OFBiz component is a self-contained module - such as party, order, or a custom app - that packages everything it needs: entity definitions, services, screens, forms, web app configuration, and data files.
Every component is described by an ofbiz-component.xml file at its root, which tells the framework which entity models, service definitions, webapps, and classpath resources to load. Components are discovered automatically at startup from the framework, applications, and plugins directories.
Because a component is loosely coupled from the rest of the system, you can add, remove, or replace one without touching core framework code - the main mechanism OFBiz uses for customization.
More Related questions...