Struts2 2.3.15.1简单HelloWord实现
?3.配置web.xml文件
? ??<?xml version="1.0" encoding="UTF-8"?>
? ? <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" ? ? ? ? xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>strutsbugtest</display-name>
<filter>
<filter-name>Struts</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>Struts</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>
4.在src下创建struts.xml文件,配置如下:
<struts>
? ? <package name="default" namespace="/" extends="struts-default">
<action name="hello" class="com.test.bug.HelloWord">
<result>/jsp/index.jsp</result>
</action>
</package>
</struts>
5.在WebContent下创建jsp文件夹和jindex.jsp文件,并创建action对应的类。
启动Tomcat并访问。
?
?
?