首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

Struts2 2.3.15.1容易HelloWord实现

2013-08-26 
Struts2 2.3.15.1简单HelloWord实现?3.配置web.xml文件? ???xml version1.0 encodingUTF-8?? ? w

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并访问。

?

?

Struts2 2.3.15.1容易HelloWord实现Struts2 2.3.15.1容易HelloWord实现

?

热点排行