gpt4 book ai didi

java - 我如何在 Eclipse 中配置 applicationcontext.xml

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:58:43 24 4
gpt4 key购买 nike

当我将 struts.xml 放入 web-inf 时显示错误......当我放入 src 文件夹时它工作正常。(在 web-inf 中是 applicationcontext.xml)

(在(src 文件夹或 src/resources)中的 struts.xml)当我将 applicationcontext.xml 放入 src 文件夹时.........它说无法在 web-inf 中找到 applicationcontext.xml文件夹......无法执行。

我如何配置,以便 eclipse 可以找到 struts.xml 或 applicationcontext.xml 的路径,以便无论我放在哪里都应该检测到它。

web.xml中的代码如下。

<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>

谢谢大家

最佳答案

如果你在 web-inf 文件夹中放置

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext*.xml</param-value>
</context-param>

如果你在 src/resource 文件夹中放置

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext*.xml</param-value>
</context-param>

如果在修改后出现如下链接的错误,还有一点。

http://www.bpjava.net/Struts2_Configuration_Plugin/config-browser/showBeans.action

最后给出了解决方案。

或者您可以执行以下操作。

在 struts.xml 中 <constant name="struts.devMode" value="false" />

关于java - 我如何在 Eclipse 中配置 applicationcontext.xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9801777/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com