zoukankan      html  css  js  c++  java
  • Struts入门一

    一:Struts是什么

      Struts:是用来处理访问服务器的请求。

    二:搭建Struts框架

      1.导包

      

        2.书写Action类

    public class TestAction extends ActionSupport {
        public String test() {
            System.out.println("一般用这种方法创建Action类");
            return "success";
        }
    }
    Action

        3.书写核心配置文件

    <?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:将Action配置封装.就是可以在Package中配置很多action.
                name属性: 给包起个名字,起到标识作用.随便起.不能其他包名重复.
                namespace属性:给action的访问路径中定义一个命名空间
                extends属性: 继承一个 指定包
                abstract属性:包是否为抽象的; 标识性属性.标识该包不能独立运行.专门被继承
          -->
        <package name="test" namespace="/test" extends="struts-default">
        <!-- action元素:配置action类
                    name属性: 决定了Action访问资源名.
                    class属性: action的完整类名
                    method属性: 指定调用Action中的哪个方法来处理请求
             -->
            <action name="TestAction" class="cn.itcast.manager.TestAction" method ="test">
            <!-- result元素:结果配置 
                        name属性: 标识结果处理的名称.与action方法的返回值对应.
                        type属性: 指定调用哪一个result类来处理结果,默认使用转发.
                        标签体:填写页面的相对路径
                -->
                <result name="success" type="dispatcher">/test.jsp</result>
            </action>
        </package>
    </struts>
    配置文件

        4.将struts2核心过滤器配置到web,xml

    <?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>StructsDay01</display-name>
       <!-- struts2核心过滤器 -->
      <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>
      <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>
    </web-app>
    将核心过滤器配置到web.xml
  • 相关阅读:
    公安备案接入服务商如何填写?(网站接入信息)
    VSCode 开发Vue必备插件
    阿里云ecs从零配置centos 安装宝塔bt环境 (安装失败提示setuptools installation failed)
    hover时下划线从中间向两端渐变
    phpcms v9后台增加阅读量字段,可任意修改阅读量
    织梦登录后台变空白解决方法大全
    html鼠标滚动后导航栏吸顶效果
    关于height:100%和height:100vh的区别
    mycat
    Hash碰撞
  • 原文地址:https://www.cnblogs.com/chiwang/p/9353930.html
Copyright © 2011-2022 走看看