ofbiz--A Beginners Development Guide--Part 1

原文:https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Tutorial+-+A+Beginners+Development+Guide

记录搭建过程中碰到的问题。

1、hot-deploy下的Readme.txt需要仔细阅读。想要加载hot-deploy下的应用就需要在component-load.xml中配置。

component-load.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<component-loader xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/component-loader.xsd">
    <load-component component-location="practice"/>
</component-loader>

2、web.xml文章中就写了主要内容,需要从别的项目中拷贝源文件做修改。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
    <display-name>Open For Business - PRACTICE Application</display-name>
    <description>PRACTICE Application of the Open For Business Project</description>
		<context-param>
		    <param-name>webSiteId</param-name>
		    <param-value>PRACTICE</param-value>
		    <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description>
		</context-param>
		<context-param>
		     <param-name>localDispatcherName</param-name>
		     <param-value>practice</param-value>
		     <description>A unique name used to identify/recognize the local dispatcher for the Service Engine</description>
		</context-param>
		<context-param>
		     <param-name>mainDecoratorLocation</param-name>
		     <param-value>component://practice/widget/PracticeScreens.xml</param-value>
		     <!-- change the path to the following if the above doesn't work for you -->
		     <!-- <param-value>component://practice/webapp/practice/widget/PracticeScreens.xml</param-value> -->
		     <description>The location of the main-decorator screen to use for this webapp; referred to as a context variable in screen def XML files.</description>
		</context-param> 
		<filter>
        <filter-name>ContextFilter</filter-name>
        <display-name>ContextFilter</display-name>
        <filter-class>org.ofbiz.webapp.control.ContextFilter</filter-class>
        <init-param><param-name>disableContextSecurity</param-name><param-value>N</param-value></init-param>
        <init-param>
            <param-name>allowedPaths</param-name>
            <param-value>/error:/control:/select:/index.html:/index.jsp:/default.html:/default.jsp:/images:/includes/maincss.css</param-value>
        </init-param>
        <init-param><param-name>errorCode</param-name><param-value>403</param-value></init-param>
        <init-param><param-name>redirectPath</param-name><param-value>/control/main</param-value></init-param>
    </filter>
    <filter-mapping><filter-name>ContextFilter</filter-name><url-pattern>/*</url-pattern></filter-mapping>

    <listener><listener-class>org.ofbiz.webapp.control.ControlEventListener</listener-class></listener>
    <listener><listener-class>org.ofbiz.webapp.control.LoginEventListener</listener-class></listener>
		<servlet>
        <servlet-name>ControlServlet</servlet-name>
        <display-name>ControlServlet</display-name>
        <description>Main Control Servlet</description>
        <servlet-class>org.ofbiz.webapp.control.ControlServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping><servlet-name>ControlServlet</servlet-name><url-pattern>/control/*</url-pattern></servlet-mapping>

    <session-config><session-timeout>60</session-timeout><!-- in minutes --></session-config>
   <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
    </welcome-file-list>
</web-app>

 如果还有其他的问题可以参考specialpurpose\example的目录结构和文件内容。

附件有调试完成的样例包。

猜你喜欢

转载自enica.iteye.com/blog/2026632
今日推荐