Chinaunix首页 | 论坛 | 博客
  • 博客访问: 6642942
  • 博文数量: 915
  • 博客积分: 17977
  • 博客等级: 上将
  • 技术积分: 8846
  • 用 户 组: 普通用户
  • 注册时间: 2005-08-26 09:59
个人简介

一个好老好老的老程序员了。

文章分类

全部博文(915)

文章存档

2022年(9)

2021年(13)

2020年(10)

2019年(40)

2018年(88)

2017年(130)

2015年(5)

2014年(12)

2013年(41)

2012年(36)

2011年(272)

2010年(1)

2009年(53)

2008年(65)

2007年(47)

2006年(81)

2005年(12)

分类: Java

2012-08-29 12:02:07

HelloWorld.jsp:

点击(此处)折叠或打开

  1. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  2.     pageEncoding="ISO-8859-1"%>
  3. <%@ taglib prefix="s" uri="/struts-tags"%>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  8. <title>Hello World!>
  9. </head>
  10. <body>
  11. <h2><s:property value="messageStore.message" /></h2>
  12. </body>
  13. </html>

struts.xml:

点击(此处)折叠或打开

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE struts PUBLIC
  3.     "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
  4.     "">
  5. <struts>
  6.     <constant name="struts.devMode" value="true" />
  7.     <package name="default" extends="struts-default">
  8.         <action name="index">
  9.             <result>/index.jsp</result>
  10.         </action>
  11.         <action name="hello" class="org.apache.struts.helloworld.action.HelloWorldAction" method="execute">
  12.             <result name="success">/HelloWorld.jsp</result>
  13.         </action>
  14.     </package>
  15. </struts>

web.xml:

点击(此处)折叠或打开

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns:xsi="" xmlns="" xmlns:web="/web-app_2_5.xsd" xsi:schemaLocation=" /web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  3.     <display-name>strutstest</display-name>
  4.     <welcome-file-list>
  5.         <welcome-file>index.html</welcome-file>
  6.         <welcome-file>index.htm</welcome-file>
  7.         <welcome-file>index.jsp</welcome-file>
  8.         <welcome-file>default.html</welcome-file>
  9.         <welcome-file>default.htm</welcome-file>
  10.         <welcome-file>default.jsp</welcome-file>
  11.     </welcome-file-list>
  12.     <filter>
  13.         <filter-name>struts2</filter-name>
  14.         <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
  15.         <!--<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>-->
  16.     </filter>
  17.     <filter-mapping>
  18.         <filter-name>struts2</filter-name>
  19.         <url-pattern>/*</url-pattern>
  20.     </filter-mapping>
  21. </web-app>

新建动态Web工程(或者安装Tomcat插件后新建Tomcat工程),然后书写上面的代码并引入必要的Struts2的库,发布运行你就可以成功了!

阅读(4184) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~