Ofbiz研究第一天:Helloworld

1.因为北京的项目,我们可能会选择ofbiz了,老板的态度很明朗了...
2.我还是很担忧,ofbiz是个很好的东西,我很喜欢,但这不一定适合我们啊...
3.和老板总是说了一些不该说的,说了有点后悔,如果我以后成不了大气,可能是我这个方面有点笨...
4.其实我很久就喜欢java,但这次真的遇到java了还是高兴不起来,本来不管我的事,老板是我恩人啊,每天想着项目的风险就睡不着觉,哎...
5.说归说,研究这个ofbiz吧,我很喜欢他,他的设计很不错,本来我就在做框架,可以看看学学...



今天就做个Helloworld吧,不带数据库的那种:

1,在hot-deploy目录新建一个项目啦,取名rvTest01,其实就是新建一个目录;

2,加入ofbiz-component.xml,这个好像是标准啦,填写里面的内容:
<?xml version="1.0" encoding="UTF-8"?>
<ofbiz-component name="rvTest01"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ofbiz-component.xsd">

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

	<webapp name="rvTest01" title="rvTest01" server="default-server"
		base-permission="OFBTOOLS" location="webapp/rvTest01" mount-point="/rvTest01"
		app-bar-display="false" />
</ofbiz-component>

暂且不必去了解他的含义,下同...

3,新建目录:hot-deploy/rvTest01/webapp/rvTest01/ 知道什么意思吧,不说了,等会看目录结构图;

4,从framework/example/webapp/example/中复制erro文件夹和index.jsp到hot-deploy/rvTest01/webapp/rvTest01/下,并新建文件夹:hot-deploy/rvTest01/webapp/rvTest01/WEB-INF,从framework/example/webapp/example/WEB-INF中复制web.xml到hot-deploy/rvTest01/webapp/rvTest01/WEB-INF,然后加入controller.xml,内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<site-conf xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd">

	<include location="component://common/webcommon/WEB-INF/common-controller.xml" />

	<errorpage>/error/error.jsp</errorpage> <!--这个error.jsp文件用来显示报错作息-->
	
	<request-map uri="main">
		<security https="false" auth="false" />
		<response name="success" type="view" value="main" />
	</request-map>

	<view-map name="main" type="ftl" page="/helloWorld.ftl" />

</site-conf>

5,新建一个模板:helloWorld.ftl
<h1>Hello OFbiz</h1>
<p>我的第一个测试页面正在运行...</p>

6,运行就能看到效果了:http://localhost:8080/rvTest01/control/main

Ofbiz研究第一天:Helloworld

你可能感兴趣的:(数据结构,xml,框架,jsp,Web)