当前位置: 代码迷 >> 综合 >> Struts2 Artifact XXXX:war exploded: Error during artifact deployment 报错
  详细解决方案

Struts2 Artifact XXXX:war exploded: Error during artifact deployment 报错

热度:77   发布时间:2023-11-25 16:55:17.0

 运行Tomcat时出现的报错

 这种错误一般有两种解决方法

第一种解决方法:

 在Idea的左上角点击File,然后找到Project Structure点击

 在Project Settings种找到Artifacts

然后点击减号先清空所有

清空之后点击加号,找到Web Application Exploded 然后鼠标移入会出现两个选项,选择From Modules

选择自己的项目点击ok

 再点击Apply之后就可以退出了,退出之后还要返回Tomcat重新配置一下

tomcat配置界面找到Deployment,然后点击加号选择Artifact

 

完成

如果第一种没用的话那就只能用第二种了

第二种 :

 一般如果你上面的配置没错还是报错那只有一种可能,就是你的.xml配置出现问题了

 

 action的class路径配置不能是以 "/" 为分隔符要用 "."

 还要要注意你的package的extends是否有添加 "struts-default"

下面看一下规范基础的.xml配置

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC"-//Apache Software Foundation//DTD Struts Configuration 2.5//EN""http://struts.apache.org/dtds/struts-2.5.dtd">
<struts><constant name="struts.devMode" value="true"/><package name="helloworld" extends="struts-default" namespace="/"><!--    全局跳转    --><global-results><result name="error">/nologin.jsp</result><result name="ExceptionError">/WEB-INF/exception.jsp</result></global-results><!--    允许通配符    --><global-allowed-methods>regex:.*</global-allowed-methods>
<!--    全局异常捕获    --><global-exception-mappings><exception-mapping exception="java.lang.Exception" result="ExceptionError"/></global-exception-mappings><action name="hello" class="com.action.HelloAction" method="execute"><result name="success">/jiuyun.jsp</result></action>
<!--  浏览器重定向  --><action name="mytMian"><result type="redirect">/index.jsp</result></action>
<!--  容器内转发  --><action name="userC_*" class="com.action.UserAction" method="{1}"><result name="success" type="chain">admin</result></action></package>
</struts>

 

  相关解决方案