简单的strtus框架搭建

呵呵,终于瞻仰到你的真面目了struts!久仰久仰!!

自己写了个超级简单的Struts框架的程序,这边做个记录。

完成流程:

  1. 建个web工程这个就不说了,把web.xml复制过去,主要包含其中的filter的内容
  2. 写struts.xml文件,配置好action result的对应关系
  3. 写action
  4. 写result,通常为jsp页面

下面说说具体的文件内容:

  • web.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<web-app 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">
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
 </welcome-file-list>//这部分都是默认的,没做修改
 <filter>//此处为添加的struts的过滤器,web程序执行时,通过此文件的这部分告知程序下步去招struts,xml文件完成流程
<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>//此处可修改,但一般都这样写,以便访问的时候没有限制,不用非要输入XXX.action 这种格式
</filter-mapping>
</web-app>

  • struts.xml文件

<?xml version="1.0" encoding="UTF-8"?>//此句默认都带,可从web,xml中拷到
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.1//EN"
  "http://struts.apache.org/dtds/struts-2.1.dtd">//这句很有用,可以帮助你用myeclipse的提示功能,不然找不到strtuts的标签,不能给提示
<struts>
 <constant name="struts-devMode" value="true"></constant>//此举方便热部署,但是我用着没效果!!
 <package name="front" namespace="/" extends="struts-default">//此处只写了一个action,挺简单的!
<action name="test" class="com.gao.action.TestAction">
  <result>/test.jsp</result>//对应的result
</action>
 </struts>

  • action代码

package com.gao.action;
import com.opensymphony.xwork2.ActionSupport;
public class TestAction extends ActionSupport {
public String execute() {
return SUCCESS;
 }}//代码超级简单,只有一个execute方法,返回一个SUCCESS,是struts定义的常量,还有error,input,共有5个

  • jsp文件

<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<%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="<%=basePath%>">
<title>My JSP 'index.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
  <!--<link rel="stylesheet" type="text/css" href="styles.css">-->
 </head>
<body>
Test!!!
 </body>
</html>
//结果文件,看到了吧,也很简单,只是在默认生成的jsp body中加了个test!!,呵呵,关键在于实现struts的框架,任务完成,

搭建这个工程后,直接访问http:127.0.0.1:8080/test/test就行,其中第一个test是我定义的工程的webroot名称,第二个为action 的名称,这样可访问到test.jsp的内容。

运行过程是这样的:

请求来了--->web.xml去找对应的处理方式,结果找到filters中的struts路径中"/*"可以匹配,然后找到struts.xml文件----->文件中线对应namespace,然后进第一个package,然后招action ,找到test,然后由class进去action ,返回SUCCESS.找到对应的result为test.jsp,返回给用户!

一路走来着实不易啊,但是再复杂的工程都是基于这个原理的,所以一定记牢且举一反三哦,要能想到这边的action 和result的对应有可能会有很多次,来回对应,当然result到action 的对应,靠的是jsp文件内部的<form  action="admin/test" method="post">这种,action 对应jsp,通过Struts.xml文件啦,方式不一样,效果一样,似乎接到一个请求,大家都来回推托哈,当然最后都是要回到jsp来显示个用户看的~~只是有的jsp的作用不是最终结果的显示,而是中间需要用户的输入啊,干预啊,之类的。。

简单的工程回顾到这里,明儿写个相比这个要复杂点的,但依然只是小菜哈。。。


你可能感兴趣的:(简单的strtus框架搭建)