2

我正在运行带有 mavenized struts 2/spring 应用程序的 weblogic 10.3.5。该应用程序在通过 Eclipse 发布到服务器时运行良好,但是当我将应用程序导出到 .war 文件并通过管理控制台部署并运行它时,它给我以下堆栈跟踪错误。

[[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'] WARN org.apache.struts2.dispatcher.Dispatcher - 找不到操作或结果:/eServices/login.action 那里没有为与上下文路径 [/eServices] 关联的命名空间 [/] 和操作名称 [login] 映射的操作。- [未知位置] 在 org.apache.struts2.impl.StrutsActionProxy.prepare(StrutsActionProxy.java:63) 在 org.apache.struts2.impl 的 com.opensymphony.xwork2.DefaultActionProxy.prepare(DefaultActionProxy.java:185)。 StrutsActionProxyFactory.createActionProxy(StrutsActionProxyFactory.java:37) 在 com.opensymphony.xwork2.DefaultActionProxyFactory.createActionProxy(DefaultActionProxyFactory.java:58) 在 org.apache.struts2.dispatcher.Dispatcher.serviceAction(Dispatcher.java:552) 在 org.apache .struts2.dispatcher.ng。

我发现一些帖子建议在我的类路径中添加具有以下配置的 struts.properties 文件,但没有解决我的问题。

struts.convention.action.mapAllMatches = true struts.convention.action.includeJars=。?/电子服务。?罐(!/)?struts.convention.action.fileProtocols=jar,zip

任何有助于理解或解决此问题的帮助都会很棒!:)

以下是我的 struts.xml,我使用基于注释的配置将操作映射到其结果。

<!-- Struts Constants that override the struts.properties file -->
<constant name="struts.devMode" value="false" />
<constant name="struts.custom.i18n.resources" value="global" />
<constant name="struts.ui.theme" value="simple" />
<!-- <constant name="struts.ui.theme" value="css_xhtml" /> -->

以下是 web.xml:

<display-name>eServices</display-name>
<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <!-- Needed to manage the Java based @Configuration classes for Spring -->
    <context-param>
        <param-name>contextClass</param-name>
        <param-value>
         org.springframework.web.context.support.AnnotationConfigWebApplicationContext
        </param-value>
    </context-param>
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>com.ceiwc.es.config</param-value>
    </context-param>

    <!-- Handles Strut2 URL requests -->
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
4

1 回答 1

1

这是最终奏效的解决方案!我添加了以下 Struts2 属性:

<constant name="struts.convention.action.includeJars" value=".*?\.jar(!/|/)?" />
<constant name="struts.convention.action.fileProtocols" value="jar,zip" />

这是基于我在这篇文章中发现的。

此外,还可能有帮助的是将此属性添加到 weblogic.xml:

<wls:container-descriptor>
    <wls:prefer-web-inf-classes>true</wls:prefer-web-inf-classes>
</wls:container-descriptor>
于 2015-05-22T11:56:29.667 回答