zoukankan      html  css  js  c++  java
  • Struts2框架拦截器:

    Struts 2框架提供了良好的预配置,并准备使用的盒拦截。下面列出了几个重要的拦截器:

    SNInterceptor & 描述
    1 alias
    Allows parameters to have different name aliases across requests.
    2 checkbox
    Assists in managing check boxes by adding a parameter value of false for check boxes that are not checked.
    3 conversionError
    Places error information from converting strings to parameter types into the action's field errors.
    4 createSession
    Automatically creates an HTTP session if one does not already exist.
    5 debugging
    Provides several different debugging screens to the developer.
    6 execAndWait
    Sends the user to an intermediary waiting page while the action executes in the background.
    7 exception
    Maps exceptions that are thrown from an action to a result, allowing automatic exception handling via redirection.
    8 fileUpload
    Facilitates easy file uploading.
    9 i18n
    Keeps track of the selected locale during a user's session.
    10 logger
    Provides simple logging by outputting the name of the action being executed.
    11 params
    Sets the request parameters on the action.
    12 prepare
    This is typically used to do pre-processing work, such as setup database connections.
    13 profile
    Allows simple profiling information to be logged for actions.
    14 scope
    Stores and retrieves the action's state in the session or application scope.
    15 ServletConfig
    Provides the action with access to various servlet-based information.
    16 timer
    Provides simple profiling information in the form of how long the action takes to execute.
    17 token
    Checks the action for a valid token to prevent duplicate formsubmission.
    18 validation
    Provides validation support for actions

    完整的细节上面提到的拦截,请loook到Struts2文档。但我会告诉你如何使用拦截器,一般在你的Struts应用程序。

  • 相关阅读:
    android 中 文件的 MIME 类型 【部分内容】
    Linux下的计划任务 crontab
    监控 某个目录下文件的创建,给据创建的文件进行执行命令
    SUSE下试着搭建了一个web 做个记录
    Android 学习 — Activity
    数据库字段不规范
    浅谈测试团队规范建设
    QA拒绝上线的理由
    Bugzilla安装部署精要
    Linux下部署Bugzilla和TestLink
  • 原文地址:https://www.cnblogs.com/borter/p/9502144.html
Copyright © 2011-2022 走看看