struts2初步使用
首先使用struts框架需在web.xml中配置struts2核心控制器如下代码
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
下面列出struts2的struts.xml配置,对所以的访问路径生效
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<constant name="struts.enable.DynamicMethodInvocation" value="false" />
<constant name="struts.devMode" value="true" />
<package name="default" namespace="/admin" extends="struts-default">
<action name="login" class="com.lin.actions.LoginAction">
<result name ="success">/hello.jsp</result>
</action>
</package>
</struts>
在src目录下创建Action名为LoginAction如上struts.xml配置显示
继承ActionSupport重写execute方法,返回“success”
访问地址http://localhost:8080/Struts2Demo/admin/login即可看见hello.jsp内容