首页
随机
最近更改
特殊页面
社群首页
参数设置
关于WHY42
免责声明
WHY42
搜索
用户菜单
登录
欢迎来到Riguz的小站!这是一个私人wiki,用来记录一些我的笔记。
查看“︁Ofbiz:Practice”︁的源代码
←
Ofbiz:Practice
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
[https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Tutorial+-+A+Beginners+Development+Guide#OFBizTutorial-ABeginnersDevelopmentGuide-Part1 refer] =创建组件= 创建目录: <pre> hot-deploy |____practice |____widgets |____webapp |____practice |____WEB-INF |____error </pre> 然后创建ofbiz-component.xml(hot-deploy/practice/ofbiz-component.xml): <source lang="xml"> <?xml version="1.0" encoding="UTF-8"?> <ofbiz-component name="practice" 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="practice" title="practice" server="default-server" base-permission="OFBTOOLS" location="webapp/practice" mount-point="/practice" app-bar-display="false" /> </ofbiz-component> </source> =创建webapp= 新建controller.xml : <source lang="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"/> <description>practice</description> <request-map uri="main"><security https="true" auth="true"/> <response name="success" type="view" value="main"/> </request-map> <view-map name="main" type="screen" page="component://practice/widget/PracticeScreens.xml#main"/> </site-conf> </source> 新建web.xml: <source lang="xml"> .... <context-param> <param-name>mainDecoratorLocation</param-name> <param-value>component://practice/widget/PracticeScreens.xml</param-value> <description>The location of the main-decorator screen ...</description> </context-param> ... </source> 拷贝一个error.jsp; 创建PracticeScreens.xml: <source lang="xml"> <?xml version="1.0" encoding="UTF-8"?> <screens xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd"> <screen name="main-decorator"> <section> <widgets> <label text="Hello Riguz!" /> </widgets> </section> </screen> </screens> </source> 运行即可。 https://localhost:8443/practice/control/main [[Category:Programe]]
返回
Ofbiz:Practice
。