码迷,mamicode.com
首页 > 其他好文 > 详细

Struts2学习(一)

时间:2016-07-25 14:27:06      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

struts2 就是 web层开发框架,符合MVC模式

入门程序

 创建web工程

技术分享

 

导入jar包

下载struts2的jar包  struts-2.3.15.1-all 版本.  

注意:在struts2开发,一般情况下最少导入的jar包,去apps下的struts2-blank示例程序中copy

技术分享

  

创建index.jsp页面

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>Hello Struts2</h1>
</body>
</html>

 创建hello.jsp页面

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>Hello Struts2</h1>
</body>
</html>

 

对struts2框架进行配置

web.xml

 web.xml文件中配置前端控制器(核心控制器)-----就是一个Filter

 目的:是为了让struts2框架可以运行。

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>struts2_01</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <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>
</web-app>

 

struts2.xml

创建一个struts.xml配置文件 ,这个是struts2框架配置文件。

目的:是为了struts2框架流程可以执行。

名称:struts.xml

位置:src下(classes下)

<?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="/" extends="struts-default">
        
        <action name="hello" class="com.cxz.HelloAction" method="say">
            <result name="good">/hello.jsp</result>
        </action>
    </package>

</struts>

 

创建一个HelloAction类

要求,在HelloAction类中创建一个返回值是String类型的方法,注意,无参数。

package com.cxz;

public class HelloAction {
    
    public String say() {
        System.out.println("Hello action say method");
        return "good";
    }

}

 

在struts.xml文件中配置HelloAction

<package name="default" namespace="/" extends="struts-default">
        
        <action name="hello" class="com.cxz.HelloAction" method="say">
            <result name="good">/hello.jsp</result>
        </action>
    </package>

 

在index.jsp中添加连接,测试

<a href="${pageContext.request.contextPath }/hello.action">访问Struts2入门</a>

运行

http://localhost:8080/struts2_01/

 

Struts2学习(一)

标签:

原文地址:http://www.cnblogs.com/chenxiangzhen/p/5703214.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!