`

ofbiz中常见的一些用法及操作总结

阅读更多

1.一个组件下各目录或文件的用途:

 

build目录是已编译的java代码和任何Java库。它们能够使这个应用程序运行。(但是不能够仅仅靠它们运行。可以仅靠webapp目录下的一个或者多个web应用程序运行)

build.xml文件是ant文件,用于测试和构建这个应用程序。

config目录包含配置文件,例如多语言下的国际化UI标签的配置文件。

data目录包含种子和演示数据,xml格式。

entitydef目录,包含这个应用程序的数据模型定义。

script脚本目录,包含业务逻辑的脚本文件。

servicedef目录,包含services服务,它们是细粒度的业务逻辑(类似于方法或函数)。

src源文件目录,包含实现业务逻辑的Java类文件。

webapp目录,是web接口,是应用程序的前端。一个OFBIZ应用程序能有多个webapp应用程序。

-------------------------------------------------------------------------------------------------------------------------------------

2.ofbiz-component.xml文件中的几项配置

 

<resource-loader name="main" type="component"/>

<classpath type="jar" location="build/lib/*"/>

<classpath type="dir" location="script"/>

<classpath type="dir" location="config"/>

 

<entity-resource type="model" reader-name="main" loader="main" location="entitydef/entityModel.xml"/>

<entity-resource type="group" reader-name="main" loader="main" location="entitydef/entityGroup.xml"/>

<entity-resource type="eca" reader-name="main" loader="main" location="entitydef/eecas.xml"/> 

<entity-resource type="data" reader-name="seed" loader="main" location="data/HobbiesData.xml"/>

 

<service-resource type="model" loader="main" location="servicedef/services.xml"/>

<service-resource type="eca" loader="main" location="servicedef/secas.xml"/>

-------------------------------------------------------------------------------------------------------------------------------------

3.controller.xml文件中的请求资源路径配置

 

<request-map uri="createPerson">

  <event type="service" invoke="createHelloPerson"/>

  <response name="success" type="view" value="guestbook"/>

  <response name="error" type="view" value="guestbook"/>

</request-map>

 

<view-map name="guestbook" type="screen" page="component://hello/widget/HelloScreens.xml#guestbook"/>

-------------------------------------------------------------------------------------------------------------------------------------

4.数据模型定义xml文件

 

<entity entity-name="Department" package-name="org.ofbiz.practice">

  <field name="departmentId" type="id-ne" col-name="departmentId"><description></description>  </field>

  <field name="departmentName" type="name" col-name="departmentName"></field>

  <prim-key field="departmentId"/>

</entity>

-------------------------------------------------------------------------------------------------------------------------------------

5.细粒度的业务逻辑定义xml文件

 

<service name="createHelloPerson" engine="java" location="org.ofbiz.hello.HelloServices" invoke="createHelloPerson">

  <description>Create a HelloPerson</description>

  <auto-attributes entity-name="HelloPerson" mode="IN" include="nonpk" optional="true"/>

  <attribute name="helloPersonId" type="String" mode="OUT" optional="false"/>

</service>

 

<service name="createHelloPersonHobby" engine="simple" location="org/ofbiz/hello/HelloServices.xml" invoke="createHelloPersonHobby">

  <description>Create a HelloPersonHobby which links a person and a hobby</description>

  <auto-attributes entity-name="HelloPersonHobby" mode="IN" include="pk" optional="false"/>

</service>

-------------------------------------------------------------------------------------------------------------------------------------

6.decorator-screen的一般用法

 

<screens>

 <screen name="CommonDecorator">

  <section>

  <widgets>

   <platform-specific><html><html-template location="component://hello/webapp/hello/includes/header.ftl"/></html></platform-specific>

   <decorator-section-include name="body"/>

   <platform-specific><html><html-template location="component://hello/webapp/hello/includes/footer.ftl"/></html></platform-specific>

  </widgets>

  </section>

 </screen>

 <screen name="main">

  <section>

  <widgets>

   <decorator-screen name="CommonDecorator">

    <decorator-section name="body">

    <platform-specific><html><html-template location="component://hello/webapp/hello/main.ftl"/></html></platform-specific>

    </decorator-section>

   </decorator-screen>

  </widgets>

  </section>

 </screen>

</screens>

-------------------------------------------------------------------------------------------------------------------------------------

7.people.bsh

 

import org.ofbiz.entity.*;

 

delegator = request.getAttribute("delegator");

 

persons = delegator.findAll("Person");

 

context.put("persons", persons);

-------------------------------------------------------------------------------------------------------------------------------------

8.people.groovy

 

context.persons = delegator.findList("HelloPerson", null, null, null, null, false);

-------------------------------------------------------------------------------------------------------------------------------------

9.people.ftl

 

<#if persons?has_content>

Some of the famous celebrities who have visited our site:

<ul>

<#list persons as person>

<li>${person.firstName?if_exists} ${person.lastName?if_exists}</li>

</#list>

</ul>

</#if>

-------------------------------------------------------------------------------------------------------------------------------------

10.在widget-screen前用actions的方式来为form准备数据

 

<actions>

 <!-- find HelloPerson by condition,since there is no conditions,all values of HelloPerson are returned -->

 <entity-condition entity-name="HelloPerson" list-name="allGuests">

  <order-by field-name="helloPersonId"/>

 </entity-condition>

</actions>

 

<actions>

 <set field="helloPersonId" from-field="parameters.helloPersonId"/>

 <!-- find HelloPersonHobby from helloPersonId, equivalent to a delegator.findByAnd(...) -->

 <entity-and entity-name="HelloPersonHobby" list-name="allHobbies">

  <field-map env-name="helloPersonId"/>

  <order-by field-name="helloHobbyId"/>

 </entity-and>

 

 <!-- find HelloPerson from helloPersonId, equivalent to a delegator.findByPrimaryKey(...) -->

 <entity-one entity-name="HelloPerson" value-name="person">

  <field-map env-name="helloPersonId"/>

 </entity-one>

</actions>

-------------------------------------------------------------------------------------------------------------------------------------

11.在form中用action准备好的数据来显示页面

 

<form name="GuestBookList" type="list" list-name="allGuests">

 <auto-field-entity entity-name="HelloPerson" default-field-type="display"/>

 <field name="hobbies">

  <hyperlink target="hobbies?helloPersonId=${helloPersonId}" description="See Hobbies"/>

 </field>

</form>

<form name="AddGuest" type="single" target="createPerson">

 <auto-field-entity entity-name="HelloPerson"/>

 <field name="helloPersonId"><hidden/></field>

 <field name="submitButton" title="Add a Guest" widget-style="standardSubmit">

  <submit button-type="button"/>

 </field>

</form>

 

<form name="HobbiesList" type="list" list-name="allHobbies">

 <field name="helloHobbyId" title="Hobby">

  <display-entity entity-name="HelloHobby" description="${description}"/>

 </field>

</form>

 

<!--使用ofbiz自带的查询服务-->

<form name="ListDepartment" type="list" list-name="listIt" paginate-target="findDept" default-entity-name="Department">

<actions>

 <service service-name="performFind" result-map="result" result-map-list="listIt">

  <field-map field-name="inputFields" from-field="pCtx"/>

  <field-map field-name="entityName" value="Department"/>

 </service>

</actions>

</form>

-------------------------------------------------------------------------------------------------------------------------------------

12.HelloServices(Java)服务的第一种表现方式

 

public static final String module = HelloServices.class.getName();// used for debugging

 

public static Map createHelloPerson(DispatchContext dctx, Map context){

 GenericDelegator delegator = dctx.getDelegator();

 try{

  String helloPersonId = delegator.getNextSeqId("HelloPerson");

  Debug.logInfo("helloPersonId = " + helloPersonId, module); // prints to the console or console.log

  GenericValue helloPerson = delegator.makeValue("HelloPerson", UtilMisc.toMap("helloPersonId", helloPersonId));

  helloPerson.setNonPKFields(context);

  delegator.create(helloPerson);

 

  Map result = ServiceUtil.returnSuccess();

  result.put("helloPersonId", helloPersonId);

  return result;

 }catch(GenericEntityException ex){

  return ServiceUtil.returnError(ex.getMessage());

 }

}

-------------------------------------------------------------------------------------------------------------------------------------

13.HelloServices(Minilang)服务的第二种表现方式

 

Minilang比较起来是简单的。 简单的minilang service在script/目录里面并且是一个XML文件。 由于它是专门为共同的OFBiz应用任务设计,例如 查询数据,存放数据,检查premissions,并且与现有的实体一起使用,并且执行业务逻辑,它使那些任务工作非常容易:

 

<simple-method method-name="createHelloPersonHobby" short-description="create a Hello-Person relationship" login-required="false">

 <make-value entity-name="HelloPersonHobby" value-name="newEntity"/>

 <set-nonpk-fields map-name="parameters" value-name="newEntity"/>

 <set-pk-fields map-name="parameters" value-name="newEntity"/>

 <create-value value-name="newEntity"/>

</simple-method>

-------------------------------------------------------------------------------------------------------------------------------------

14.ofbiz form中下拉列表的代码

 

<field name="agreementTypeId" title="${uiLabelMap.AccountingAgreementTypeId}">

    <drop-down allow-empty="true">

        <entity-options description="${description}" entity-name="AgreementType" key-field-name="agreementTypeId"/>

    </drop-down>

</field>

以上是在form中显示下拉列表的代码示例,title是下拉列表前的说明文字,entity-name是下拉列表表项的取值实体,description是下拉列表显示的表项,此处,下拉列表的表项从实体AgreementType中的description域取值.另外,标签中的allow-empty如果为ture则允许该下拉菜单为空,如果为false则必须在下拉列表中选择其一.

-------------------------------------------------------------------------------------------------------------------------------------

15.ofbiz form表头汉化示例

 

<form name="ContactList" type="list" list- name="allContacts">        

   <auto-fields-entity entity-name="Contact" default-field-type="display"/> 

   <field name="contactId" title="联系人ID"></field>

   <field name="name" title="姓名"></field>

   <field name="duty" title="职位"></field>

   <field name="responsibility" title="职责"></field>

   <field name="corporation" title="单位"></field>

   <field name="email" title="E-mail"></field>

   <field name="tel" title="电话"></field>

   <field name="msn" title="MSN"></field>

   <field name="qq" title="QQ"></field>

</form>

首先,<auto-fields-entity entity-name="Contact" default-field-type="display"/> 先将实体Contact的所有域取出来,如果下面不对各域作具体指定则直接根据display的格式显示各域.其次,下面的每一个条<field name="contactId" title="联系人ID"></field>语句都将对应域的表头进行汉化.

-------------------------------------------------------------------------------------------------------------------------------------

16.ofbiz查找功能关键代码

 

其中FindTest表单是用于输入查询条件的表单,ResultTest表单是用于显示查询结果的表单.两张表单在同一页面上显示.其中,Test是实体名.

<form name="FindTest" target="main" type="single">

   <auto-fields-entity entity-name="Test" default-field-type="find"/>

   <field name="submitButton" title="查找" widget-style="smallSubmit">

      <submit button-type="button"/>

   </field>

</form>

 

<form name="ResultTest" list-iterator-name="listIt" target="" paginate-target="main" title="" type="list">

  <actions>

    <set field="entityName" value="Test"/>

    <service service-name="performFind" result-map-name="result" result-map-list-iterator-name="listIt">

      <field-map field-name="inputFields" env-name="requestParameters"/>

      <field-map field-name="entityName" env-name="entityName"/>

    </service>

  </actions>

  <auto-fields-entity entity-name="Test" default-field-type="display"/>

</form>

 

小结:

    查询功能不需要minilanguage或java来实现.输入查询条件的表单type为single,target指向的是当前页面,auto-fields-entity元素的type为find.

    显示查询结果的表单比较特别,该表单中有<action>部分,其中的代码就是实现查询功能的代码,具体使用时修改实体名即可.和其它表单一样,可以指定具体域有特殊的显示效果或隐藏.

0
1
分享到:
评论

相关推荐

    ofbiz开发入门总结

    《Ofbiz开发入门总结》 Ofbiz,全称Open For Business Project,是一个开源的企业级应用框架,主要用于构建复杂的电子商务和企业管理系统。它基于Java技术,提供了丰富的组件模型和灵活的业务流程,使得开发者能够...

    ofbiz中文技术文档

    3. **模块详解**:Ofbiz包含的产品管理、订单处理、库存控制等模块的使用方法和配置指南,可能都会在文档中一一阐述。 4. **API与服务**:对于开发者而言,了解Ofbiz提供的API和服务至关重要。文档可能会涵盖如何...

    Ofbiz16.11.05运行及开发环境搭建等

    在本文中,我们将深入探讨如何搭建OFBiz 16.11.05的运行及开发环境,并讨论一些关键的OFBiz功能,如百度地图集成、国际化处理、用户逻辑、PDF导出、服务调用、内容管理、MVC框架、服务引擎、多租户以及权限系统。...

    Ofbiz 数据库全模型

    在Ofbiz中,数据库模型扮演着至关重要的角色,它是系统数据结构的基础,定义了所有业务实体及其相互关系。 数据库模型是Ofbiz的核心组成部分,它描述了系统中的各种实体(如产品、订单、客户等)以及它们之间的关系...

    ofbiz学习笔记(自学整理)

    这将帮助你理解Ofbiz如何在数据库中存储信息,如何通过服务接口操作数据,以及如何展示这些信息给用户。 文档中提供的"新建 Microsoft Word 文档 (2).docx"和"新建 Microsoft Word 文档.docx"可能是详细的学习笔记...

    ofbiz整理资料

    3. **模块详解**:详细解读OFBiz的各个业务模块,如订单处理、库存管理、采购管理等,解释各模块的功能和使用方法。 4. **API与服务**:介绍OFBiz的API接口和Web服务,如何调用和开发新的服务。 5. **开发与定制**...

    ofbiz 英文pdf

    - **安装JDK 5.0**:给出安装过程中的注意事项及常见问题解决方案。 - **下载OFBiz Ready to Launch**:推荐使用预打包版本简化部署流程。 - **设置Eclipse项目**:指导如何在Eclipse IDE中创建并配置OFBiz项目。...

    ofbiz10.04表结构

    3. "OFBiz其它资源.txt":这个文件可能包含了一些额外的链接、提示或说明,可能是对OFBiz开发、部署或使用的补充资料。 综上所述,这个压缩包提供了OFBiz 10.04版本的数据库设计核心信息,对于想要深入了解或开发...

    关于OFBIZ的资料

    7. **社区资源**:OfBiz拥有活跃的社区,用户可以在论坛、邮件列表和GitHub上找到解决问题的方法,以及与其他OfBiz使用者交流的经验分享。 通过深入探索OFBIZ_Demo,无论是初学者还是经验丰富的开发者,都可以...

    ofbiz安装与配置

    本文详细介绍了 Ofbiz 的安装与配置过程,包括环境搭建、Eclipse 参数及插件设置、Ofbiz 项目结构、使用 Eclipse 打开 Ofbiz 的 Ant 命令、Ofbiz 数据库(MySQL)安装及配置等内容。希望本文能够帮助初学者快速上手 ...

    ofbiz框架(文档)全

    在OFBiz中,视图可以是传统的JSP页面,也可以使用FreeMarker、JPublish、Beanshell等模板技术来实现。视图不直接与模型交互,而是通过控制器获取和更新数据。 3. **控制器(Controller)**:控制器作为模型和视图...

    ofbiz curd

    通过分析和运行这个示例,你可以逐步了解OFBiz的工作原理,掌握如何在实际项目中使用它进行数据操作。同时,这也是学习OFBiz框架及其组件交互的好方法。 总之,OFBiz作为一个强大的企业级应用框架,虽然初学难度较...

    ofbiz api开发文档

    《OFBiz API 开发文档详解》 在信息技术领域,OFBiz(Open For ...总结,OFBiz API开发文档是开发者掌握OFBiz框架的必备资料,通过深入学习和实践,开发者可以充分利用OFBiz的强大功能,实现高效的企业级应用开发。

    ofbiz中文文档.doc

    此外,OFBiz使用Servlet API 2.3中的过滤器(Filter)机制,进一步增强控制器的功能。过滤器在请求到达Servlet之前和响应离开Servlet之后进行操作,可以用来预处理请求、后处理响应,提供定制的请求和响应对象,以及...

    ofbiz数据结构设计

    在OFBiz中,服务层是业务逻辑的承载者,它封装了对数据结构的操作。服务层的设计采用服务组件架构(Service Component Architecture,SCA),服务通过接口定义,实现松耦合和高复用。服务可以调用实体引擎进行数据...

    Ofbiz框架中的事务解析.pdf

    在Ofbiz的示例代码`CustomerGatherMethodCreate`中,可以看到如何在服务中使用事务。首先,通过`TransactionUtil.begin()`开始一个事务,接着进行数据库操作,如`delegator.storeAll(toBeStore)`。如果所有操作成功...

Global site tag (gtag.js) - Google Analytics