Error when creating Strut portlet, please help me
791423Aug 17 2010 — edited Oct 29 2010I create strut portlet in weblogic portal, when i run Strut portlet, server throws Exception like this:
Missing Struts Module Configuration
There is no Struts module configuration registered for /config/login.do (module path /config).
I configed web.xml :
<?xml version="1.0" encoding="UTF-8"?>
<web-app xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name>mPortalProject</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>server</param-value>
</context-param>
<filter>
<filter-name>PageFlowJspFilter</filter-name>
<filter-class>org.apache.beehive.netui.pageflow.PageFlowJspFilter</filter-class>
</filter>
<filter>
<filter-name>PageFlowForbiddenFilter</filter-name>
<filter-class>org.apache.beehive.netui.pageflow.PageFlowForbiddenFilter</filter-class>
<init-param>
<param-name>response-code</param-name>
<param-value>404</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>PageFlowJspFilter</filter-name>
<url-pattern>*.jsp</url-pattern>
<dispatcher>FORWARD</dispatcher>
<dispatcher>REQUEST</dispatcher>
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
<filter-mapping>
<filter-name>PageFlowJspFilter</filter-name>
<url-pattern>*.jspx</url-pattern>
<dispatcher>FORWARD</dispatcher>
<dispatcher>REQUEST</dispatcher>
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
<filter-mapping>
<filter-name>PageFlowForbiddenFilter</filter-name>
<url-pattern>*.java</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
<filter-mapping>
<filter-name>PageFlowForbiddenFilter</filter-name>
<url-pattern>*.jsfb</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
<filter-mapping>
<filter-name>PageFlowForbiddenFilter</filter-name>
<url-pattern>*.jpfs</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
<listener>
<listener-class>org.apache.beehive.netui.pageflow.PageFlowContextListener</listener-class>
</listener>
<listener>
<listener-class>org.apache.beehive.netui.pageflow.HttpSessionMutexListener</listener-class>
</listener>
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.beehive.netui.pageflow.PageFlowActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/struts-config.xml</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>2</param-value>
</init-param>
<init-param>
<param-name>detail</param-name>
<param-value>2</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet>
<servlet-name>XmlHttpRequestServlet</servlet-name>
<servlet-class>org.apache.beehive.netui.pageflow.xmlhttprequest.XmlHttpRequestServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.jpf</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>XmlHttpRequestServlet</servlet-name>
<url-pattern>*.xhr</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>XmlHttpRequestServlet</servlet-name>
<url-pattern>*.render</url-pattern>
</servlet-mapping>
<filter>
<filter-name>PageFlowFacesFilter</filter-name>
<filter-class>org.apache.beehive.netui.pageflow.PageFlowFacesFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>PageFlowFacesFilter</filter-name>
<url-pattern>*.faces</url-pattern>
<dispatcher>FORWARD</dispatcher>
<dispatcher>REQUEST</dispatcher>
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
<filter-mapping>
<filter-name>PageFlowFacesFilter</filter-name>
<url-pattern>*.jsf</url-pattern>
<dispatcher>FORWARD</dispatcher>
<dispatcher>REQUEST</dispatcher>
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.faces</url-pattern>
</servlet-mapping>
</web-app>
And struts-config.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd">
<!--
This is a blank Struts configuration file with an example welcome
action/page and other commented sample elements. Tiles and the Struts
Validator are configured using the factory defaults and are
ready-to-use. NOTE: If you have a generator tool to create the
corresponding Java classes for you, you could include the details in
the "form-bean" declarations. Otherwise, you would only define the
"form-bean" element itself, with the corresponding "name" and "type"
attributes, as shown here.
-->
<struts-config>
<!--
============================================ Data Source Configuration
-->
<!--
<data-sources> <data-source
type="org.apache.commons.dbcp.BasicDataSource"> <set-property
property="driverClassName" value="org.postgresql.Driver" />
<set-property property="url"
value="jdbc:postgresql://localhost/mydatabase" /> <set-property
property="username" value="me" /> <set-property property="password"
value="test" /> <set-property property="maxActive" value="10" />
<set-property property="maxWait" value="5000" /> <set-property
property="defaultAutoCommit" value="false" /> <set-property
property="defaultReadOnly" value="false" /> <set-property
property="validationQuery" value="SELECT COUNT(*) FROM market" />
</data-source> </data-sources>
-->
<!--
================================================ Form Bean Definitions
-->
<form-beans>
<!--
sample form bean descriptor for an ActionForm <form-bean
name="inputForm" type="app.InputForm"/> end sample
-->
<!--
sample form bean descriptor for a DynaActionForm <form-bean
name="logonForm" type="org.apache.struts.action.DynaActionForm">
<form-property name="username" type="java.lang.String"/>
<form-property name="password" type="java.lang.String"/> </form-bean>
end sample
-->
<form-bean name="LoginAF" type="tinhvan.portal.actionform.LoginAF"></form-bean>
</form-beans>
<!--
========================================= Global Exception Definitions
-->
<global-exceptions>
<!--
sample exception handler <exception key="expired.password"
type="app.ExpiredPasswordException" path="/changePassword.jsp"/> end
sample
-->
</global-exceptions>
<!--
=========================================== Global Forward Definitions
-->
<global-forwards>
<!-- Default forward to "Welcome" action -->
<!-- Demonstrates using index.jsp to forward -->
<forward name="welcome" path="/Welcome.do" />
</global-forwards>
<!--
=========================================== Action Mapping Definitions
-->
<action-mappings>
<!-- Default "Welcome" action -->
<!-- Forwards to welcome.jsp -->
<action path="/Welcome" forward="/pages/welcome.jsp" />
<action parameter="/config/login.jsp" path="/login" name="LoginAF" scope="request" type="tinhvan.portal.action.LoginAction">
<forward name="success" path="/hello.jsp"></forward>
</action>
<!--
sample input and input submit actions <action path="/Input"
type="org.apache.struts.actions.ForwardAction"
parameter="/pages/Input.jsp"/> <action path="/InputSubmit"
type="app.InputAction" name="inputForm" scope="request"
validate="true" input="/pages/Input.jsp"/> <action path="/edit*"
type="app.Edit{1}Action" name="inputForm" scope="request"
validate="true" input="/pages/Edit{1}.jsp"/> end samples
-->
</action-mappings>
<!--
============================================= Controller Configuration
-->
<controller processorClass="org.apache.struts.tiles.TilesRequestProcessor" />
<!-- <controller processorClass="com.bea.struts.adapter.action.AdapterRequestProcessor" />-->
<!--
======================================== Message Resources Definitions
-->
<message-resources parameter="MessageResources" />
<!--
=============================================== Plug Ins Configuration
-->
<!--
======================================================= Tiles plugin
-->
<!--
This plugin initialize Tiles definition factory. This later can takes
some parameters explained here after. The plugin first read parameters
from web.xml, thenoverload them with parameters defined here. All
parameters are optional. The plugin should be declared in each
struts-config file. - definitions-config: (optional) Specify
configuration file names. There can be several comma separated file
names (default: ?? ) - moduleAware: (optional - struts1.1) Specify if
the Tiles definition factory is module aware. If true (default), there
will be one factory for each Struts module. If false, there will be
one common factory for all module. In this later case, it is still
needed to declare one plugin per module. The factory will be
initialized with parameters found in the first initialized plugin
(generally the one associated with the default module). true : One
factory per module. (default) false : one single shared factory for
all modules - definitions-parser-validate: (optional) Specify if xml
parser should validate the Tiles configuration file. true : validate.
DTD should be specified in file header (default) false : no validation
Paths found in Tiles definitions are relative to the main context.
-->
<plug-in className="org.apache.struts.tiles.TilesPlugin">
<!-- Path to XML definition file -->
<set-property property="definitions-config" value="/WEB-INF/config/tiles-defs.xml" />
<!-- Set Module-awareness to true -->
<set-property property="moduleAware" value="true" />
</plug-in>
<!--
=================================================== Validator plugin
-->
<plug-in className="org.apache.struts.validator.ValidatorPlugIn">
<set-property property="pathnames"
value="/WEB-INF/config/validator-rules.xml,/WEB-INF/config/validation.xml" />
</plug-in>
</struts-config>
I dont know where is error ? Please help me. Thanks in advance and sorry for my bad English.
Best Regards,
coy!