Custom Copmponents - OFBiz Tutorials
In this post we will use a custom component/application named “hwm” that is deployed in OFBiz for our exercises.
An OFBiz component is essentially a folder that contains a .xml file named "ofbiz-component.xml". This file explains the resources loaded and required by the component.
OFBiz Components - OFBiz Tutorials
- Framework Components: These are lower level components providing a technical layer and tools to the application components. These components include the following features: data layer, business logic layer, transaction handling, data source pools, etc.
- Application Components: Application components are generic ERP applications that can be used as they are or customized to meet demands for product, ordering, manufacturing, accounting, etc. These components have access to the services and tools provided by the framework components as well as services published by other application components.
- Special Purpose Components: Like the application components, they are special purpose applications, e.g. ecommerce, Google Base integration, eBay integration and so on.
- Hot-Deploy Components: This is an empty folder where you can place custom components. Custom components can be given access to resources published by other components as well as the ability to extend or override these resources.
Prerequisites - OFBiz Tutorials
- JDK 1.6 is properly installed and the JAVA_HOME environment variable is correctly set. Java can be downloaded by following going to this url: java.sun.com
- An svn client. svn client is installed in your system (needed to checkout the latest OFBiz sources); you can freely download an svn client from tigris.org
Setting up the sandbox - OFBiz Tutorial
- Download the OFBiz source files from the official OFBiz SVN Respository (this step can take some time and requires access to the Internet): “svn co http://svn.apache.org/repos/asf/ofbiz/trunk ofbiz”.
- Go to the newly created folder called: “cd ofbiz”
- Run the ant task to create a standard OFBiz component: “./ant create-component”.
- Build OFBiz and load the demo data: “./ant run-install”.
- Run OFBiz: “./ant run”.
Login into the custom “hwm” application with username “admin” and password “ofbiz”.
Create-Component Script - OFBiz Tutorial
Although you can manually create a hot-deploy component, the preferred method is to run the ant task "create component". This will create a layout using OFBiz practices which allows better integration with existing OFBiz components such as:
- Entities (the data model)
- Services (business logic)
- Widgets (user interface elements like screens, forms, menus)
- Security (authentication and authorization)
- Localization
- Tools
Definitions - OFBiz Tutorials
- Component Name: this is the name of the component (and also of the folder that will contain it, created in the hot-deploy folder). following OFBiz’s naming conventions, it should be a single word all lowercased (e.g. hwm).
- Component Resource Name: This is used as a prefix for resources. Use the component name, possibly using an upper case character for the first character in the words (e.g. Hwm).
- Webapp Name: this is the name and uri of the application in which the ui for the new component will be implemented. Following OFBiz’s naming conventions, it should be a single word all lowercased (e.g. hwm).
- Base Permission: this is the prefix for base security permissions; following OFBiz’s naming conventions, it should be a single word all uppercased this time (e.g. HWM).
Enterprise eCommerce is a powerful tool for your business to utilize. Apache OFBiz makes that tool available to any business large or small and as you can see from this post and others like it, OFBiz is highly flexible for any type of deployment you may be interested in. For more detailed information on this post visit http://www.hotwaxmedia.com/apache-ofbiz-blog/ofbiz-tutorial-custom-components-in-ofbiz/.