struts配置信息

struts.xml文件

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>

<package name="default" extends="struts-default">

<!-- com.action包下的longin.java -->

<action name="lonig" class="com.action.login">

<result name="success">index.jsp</result>

<result name="errror">error.jsp</result>

</action>

</package>

</struts>   

web.xml文件

添加如下内容

<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>

原文地址:https://www.cnblogs.com/wuweidu/p/3344345.html