DelegatorDelegator是整个ofbiz中数据库访问的入口,具体实现是GenericDelegator类,在这个类中通过protectedModelReadermodelReader=null;
protectedModelGroupReadermodelGroupReader=null;这两个属性变量去查找在xml文件中定义的数据模型ModelReader通过ModelReader读取模型..
分类:
其他好文 时间:
2015-06-25 17:44:31
阅读次数:
200
OSGI中类加载在osgi中,存在多个类加载器,每一个类加载器加载一个独立的模块,当其他模块需要寻找这个类时,通过osgi框架依赖关系表去查找这个类所在的加载器,委托这个加载器去运行ofbiz中类加载ofbiz中集成了许多应用程序,像订单,安全,登陆,网店等,还有tomcat也被集成..
分类:
编程语言 时间:
2015-06-23 18:11:43
阅读次数:
133
在ofbiz中大量使用了工厂模式,在使用工厂模式的同时使用了缓存模式,如如下生成数据操作工厂类/*******************************************************************************
*LicensedtotheApacheSoftwareFoundation(ASF)underone
*ormorecontributorlicenseagreements..
分类:
其他好文 时间:
2015-06-19 13:38:34
阅读次数:
98
当ofbiz启动的时候,他回去查找配置中定义的container并且初始化他们,然后调用初始化方法publicvoidinit(String[]args,Stringname,StringconfigFile)throwsContainerException;如果这个方法没有抛出异常的话就会把这个container存放在一个list中(在ContainerLoader类中)priv..
分类:
其他好文 时间:
2015-06-18 20:14:04
阅读次数:
146
在ofbiz中,主要有三种container系统启动时候的container这个在启动类中被调用,根据framework\base\config\ofbiz-containers.xml中的定义加载其他容器用来加载组件的container在这里边定义的container会被顶层container启动,执行指定的class类这里定义的container执行的时候..
分类:
其他好文 时间:
2015-06-18 20:13:03
阅读次数:
184
在ofbiz中备受推崇的实体引擎,具体有什么好处由我们向下研究(我也没了解过),先从第一步,实体引擎的创建在ofbiz中实体引擎是由catalina-container(tomcat容器)中创建的<containername="catalina-container"loaders="main"class="org.ofbiz.catalina.container.Catalin..
分类:
其他好文 时间:
2015-06-18 20:10:00
阅读次数:
153
Delegator delegator = (Delegator) request.getAttribute("delegator");
LocalDispatcher dispatcher = (LocalDispatcher) request
.getAttribute("dispatcher");
HttpSession session = request.getSession();
...
分类:
其他好文 时间:
2015-06-17 18:20:15
阅读次数:
139
不管做什么项目,肯定会用到多表关联查询数据,从网络查询得知ofbiz有三种多表关联查询方法实现一:Screem.xml中的section里,加,加get-related实现二:在代码中使用DynamicViewEntity对象,加入addMemberEntity,addAlias,addViewLi...
分类:
其他好文 时间:
2015-06-09 19:45:48
阅读次数:
473
1、首先framework\common\config\general.properties修改以下设置 country.geo.id.default=US currency.uom.id.default=USD locale.properties.fallback=en 改为 country.geo.id.default=CHN currency.uom.id.def...
分类:
其他好文 时间:
2015-05-14 12:27:34
阅读次数:
520