zoukankan      html  css  js  c++  java
  • struts2的配置和使用

    一:配置stuts2的运行环境,把以下的包放到WEB-INF/lib目录下

    1,structs2-core-2.1.6.jar       struts的核心库

    2,xwork-2.1.2.jar      webwork的核心库,需要它的支持

    3,  ognl-2.6.11.jar     ognl表达式语言,struts2支持改EL表达式

    4,freemarker-2.3.13.jar       表现层框架,定义了struts的可视组件主题

    5,common-logging-1.0.4 .jar     日子管理

    6,commons-fileupload-1.2.1.jar   文件上传于下载



    二:struts2拦截用户请求,在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>

    三:在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>


        <constant name="struts.enable.DynamicMethodInvocation" value="false" />
        <constant name="struts.devMode" value="true" />


        <package name="default" namespace="/" extends="struts-default">


            <default-action-ref name="index" />


            <global-results>
                <result name="error">/error.jsp</result>
            </global-results>


            <global-exception-mappings>
                <exception-mapping exception="java.lang.Exception" result="error"/>
            </global-exception-mappings>


            <action name="index">
                <result type="redirectAction">
                    <param name="actionName">HelloWorld</param>
                    <param name="namespace">/example</param>
                </result>
            </action>
        </package>


        <include file="example.xml"/>


        <!-- Add packages here -->


    </struts>




  • 相关阅读:
    Linux日志文件utmp、wtmp、lastlog、messages
    Linux日志五大命令详解
    php 函数合并 array_merge 与 + 的区别
    MySQL对数据表进行分组查询(GROUP BY)
    如何在mysql中查询每个分组的前几名
    Autojump:一个可以在 Linux 文件系统快速导航的高级 cd 命令
    linux 查看磁盘空间大小
    js刷新页面方法大全
    [知乎有感] 读研到底为了什么,值不值得?
    [Hadoop] 在Ubuntu系统上一步步搭建Hadoop(单机模式)
  • 原文地址:https://www.cnblogs.com/snake-hand/p/3174512.html
Copyright © 2011-2022 走看看