论坛首页 Java企业应用论坛

ubuntu 第一次约会ofbiz

浏览 1670 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2011-09-22  

准备工作:
1.apache-ofbiz-10.04 下载地址:http://ofbiz.apache.org/;
2.JDK安装,设置$JAVA_HOME为JDK的地址;

3.安装Ant;

开始:
1.解压ofbiz
    apache-ofbiz-10.04解压到一个目录,我是在/home/nie/ofbiz/下;
2.编译ofbiz
    打开终端,进入到目录/home/nie/ofbiz/下,

cd /home/nie/ofbiz/apache-ofbiz-10.04/

* 执行ant脚本

./ant run-install

因为在目录之下有一个build.xml文件,其编译过程基本上要调用所有的目录下的ant文件,整体上达到全部编译的效果,内容如下:

<target name="build" depends="ofbiz-init">
        <echo message="[build] ========== Start Building (Compile) =========="/>

        <subant inheritall="false">
            <filelist dir="." files="framework/build.xml"/>
        </subant>
        <subant inheritall="false" failonerror="${applications.present}">
            <filelist dir="." files="applications/build.xml"/>
        </subant>
        <subant inheritall="false" failonerror="${specialpurpose.present}">
            <filelist dir="." files="specialpurpose/build.xml"/>
        </subant>
        <subant inheritall="false">
            <fileset dir="${basedir}/hot-deploy" casesensitive="no">
                <exclude name="disabled/**"/>
                <include name="*/build.xml"/>
            </fileset>
        </subant>
        <antcall target="clean-svninfo"></antcall>

        <echo message="[build] ========== Done Building (Compile) =========="/>
    </target>
 

3. 使用内置tomcat应用服务器,java database运行ofbiz[不用外部数据库]:

./startofbiz.sh
 

4.打开浏览器访问地址:

ofbiz电子商务网址:http://127.0.0.1:8080/ecommerce/

ofbiz webtool:https://127.0.0.1:8443/webtools

 

5.可以研究了,万里长征迈出了第一步~

 

 

论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics