首页 > 代码库 > struts开发的步骤
struts开发的步骤
说来惭愧,这一个简单的struts折腾了好久,差不多花了三天多的时间才解决。下面我总结一下开发的步骤:(本人用的是MyEclipse);
1.新建一个Exercise3的web Project项目
2.配置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>3.加入类库
将如下图的jar包放在WEB-INF/lib下
4.新建一个类
代码如下:
package cn.wwh.www.struts; /** *类的作用: * *@author 一叶扁舟 *@version 1.0 *@创建时间: 2014-8-11 下午08:44:26 */ public class FirstAction { public String <span style="color:#ff0000;">firtstMethod</span>(){ System.out.println("hello word ,this my first Struts!"); return "hello"; } }
5.在WebRoot下新建一个views/hello/welcome.jsp文件
welcome.jsp的代码如下:
<pre name="code" class="html"><%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href=http://www.mamicode.com/"">>
6.在src下建一个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> <package name="default" namespace="/<span style="color:#3333ff;">test</span>" extends="struts-default"> <action name="<span style="color:#3333ff;">hello</span>" class="cn.wwh.www.struts.FirstAction" method="<span style="color:#ff0000;">firtstMethod</span>"> <result name="hello" type="redirect"> <param name="location">/views/hello/welcome.jsp</param> </result> </action> </package> </struts>7.在tomcat中部署一下在浏览器中输入:http://localhost:8080/Exercise3/test/hello.action
由于在配置文件中采用的是redirect(重定向)的方式,所以地址栏会发生改变
结果图:
特别要注意(一直出错的原因):
1.jar包不能重复导入,否则出现jar冲突,本人由于有各种版本的jar包,所以在启动tomcat的时候发生了该异常。
2.在浏览器中输入的访问地址出现了错误,这个地址组合是与struts.xml文件中namespace和action name 有关
一般访问方式:
http://ip:port/contextPath/namespace/actionName[.action]
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。