zoukankan      html  css  js  c++  java
  • Struts2 中添加 Servlet

    Struts2中如何添加Servlet

    以前Java开发都是Servlet的天下,如今是各种框架横行,遇到一个需要将以前的Servlet加入到现有的Struts2的环境中。

    Google之后发现Stack Overflow真是个好东西,解决如下,只是简单配置下。

    I assume you want to know how to use a servlet in conjunction with Struts2 when you have mapped everything to the Struts2 filter.
    
    You can use the following in your struts.xml:
    
    <constant name="struts.action.excludePattern" value="/YourServlet"/>
    You can exclude multiple patterns by separating them with a comma, such as:
    
    <constant name="struts.action.excludePattern" value="/YourServlet,/YourOtherServlet"/>
    
    参考

    Filter mapping for everthing to Struts2 besides one servlet?
    Filters not working in Struts2

    Preventing Struts from Handling a Request

    If there is a request that Struts is handling as an action, and you wish to make Struts ignore it, you can do so by specifying a comma separated list of regular expressions like:

    <constant name="struts.action.excludePattern" value="/some/conent/.*?" />
    These regular expression will be evaluated against the request's URI (HttpServletRequest.getRequestURI()), and if any of them matches, then Struts will not handle the request.
    To evaluate each pattern Pattern class from JDK will be used, you can find more about what kind of pattern you can use in the Pattern class JavaDoc.

    除了上面在Struts2 里面自带的方法

    1. 在web.xml中配置需要请求的Servlet

    <servlet-mapping>
    
    <servlet-name>Authcode</servlet-name>
    
    <url-pattern>/authcode.servlet</url-pattern>
    
    </servlet-mapping>
    

    2. 在过滤器中Request的请求进行Servlet判断并进行处理

    参考

  • 相关阅读:
    YbtOJ20030 连珠风暴
    YbtOJ20029 最大权值
    P6859 蝴蝶与花
    P4115 Qtree4
    P2486 [SDOI2011]染色
    P2487 [SDOI2011]拦截导弹
    P5163 WD与地图
    P3733 [HAOI2017]八纵八横
    CF1100F Ivan and Burgers
    P1712 [NOI2016]区间
  • 原文地址:https://www.cnblogs.com/tonyY/p/5192864.html
Copyright © 2011-2022 走看看