org.apache.coyote.Request.getAttributes()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(5.0k)|赞(0)|评价(0)|浏览(250)

本文整理了Java中org.apache.coyote.Request.getAttributes方法的一些代码示例,展示了Request.getAttributes的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.getAttributes方法的具体详情如下:
包路径:org.apache.coyote.Request
类名称:Request
方法名:getAttributes

Request.getAttributes介绍

暂无

代码示例

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. /**
  2. * Remove the specified request attribute if it exists.
  3. *
  4. * @param name Name of the request attribute to remove
  5. */
  6. @Override
  7. public void removeAttribute(String name) {
  8. // Remove the specified attribute
  9. // Pass special attributes to the native layer
  10. if (name.startsWith("org.apache.tomcat.")) {
  11. coyoteRequest.getAttributes().remove(name);
  12. }
  13. boolean found = attributes.containsKey(name);
  14. if (found) {
  15. Object value = attributes.get(name);
  16. attributes.remove(name);
  17. // Notify interested application event listeners
  18. notifyAttributeRemoved(name, value);
  19. }
  20. }

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

  1. /**
  2. * Remove the specified request attribute if it exists.
  3. *
  4. * @param name Name of the request attribute to remove
  5. */
  6. @Override
  7. public void removeAttribute(String name) {
  8. // Remove the specified attribute
  9. // Pass special attributes to the native layer
  10. if (name.startsWith("org.apache.tomcat.")) {
  11. coyoteRequest.getAttributes().remove(name);
  12. }
  13. boolean found = attributes.containsKey(name);
  14. if (found) {
  15. Object value = attributes.get(name);
  16. attributes.remove(name);
  17. // Notify interested application event listeners
  18. notifyAttributeRemoved(name, value);
  19. }
  20. }

代码示例来源:origin: codefollower/Tomcat-Research

  1. /**
  2. * Remove the specified request attribute if it exists.
  3. *
  4. * @param name Name of the request attribute to remove
  5. */
  6. @Override
  7. public void removeAttribute(String name) {
  8. // Remove the specified attribute
  9. // Check for read only attribute
  10. // requests are per thread so synchronization unnecessary
  11. if (readOnlyAttributes.containsKey(name)) {
  12. return;
  13. }
  14. // Pass special attributes to the native layer
  15. if (name.startsWith("org.apache.tomcat.")) {
  16. coyoteRequest.getAttributes().remove(name);
  17. }
  18. boolean found = attributes.containsKey(name);
  19. if (found) {
  20. Object value = attributes.get(name);
  21. attributes.remove(name);
  22. // Notify interested application event listeners
  23. notifyAttributeRemoved(name, value);
  24. } else {
  25. return;
  26. }
  27. }

代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina

  1. /**
  2. * Remove the specified request attribute if it exists.
  3. *
  4. * @param name Name of the request attribute to remove
  5. */
  6. @Override
  7. public void removeAttribute(String name) {
  8. // Remove the specified attribute
  9. // Check for read only attribute
  10. // requests are per thread so synchronization unnecessary
  11. if (readOnlyAttributes.containsKey(name)) {
  12. return;
  13. }
  14. // Pass special attributes to the native layer
  15. if (name.startsWith("org.apache.tomcat.")) {
  16. coyoteRequest.getAttributes().remove(name);
  17. }
  18. boolean found = attributes.containsKey(name);
  19. if (found) {
  20. Object value = attributes.get(name);
  21. attributes.remove(name);
  22. // Notify interested application event listeners
  23. notifyAttributeRemoved(name, value);
  24. } else {
  25. return;
  26. }
  27. }

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

  1. /**
  2. * Remove the specified request attribute if it exists.
  3. *
  4. * @param name Name of the request attribute to remove
  5. */
  6. @Override
  7. public void removeAttribute(String name) {
  8. // Remove the specified attribute
  9. // Check for read only attribute
  10. // requests are per thread so synchronization unnecessary
  11. if (readOnlyAttributes.containsKey(name)) {
  12. return;
  13. }
  14. // Pass special attributes to the native layer
  15. if (name.startsWith("org.apache.tomcat.")) {
  16. coyoteRequest.getAttributes().remove(name);
  17. }
  18. boolean found = attributes.containsKey(name);
  19. if (found) {
  20. Object value = attributes.get(name);
  21. attributes.remove(name);
  22. // Notify interested application event listeners
  23. notifyAttributeRemoved(name, value);
  24. } else {
  25. return;
  26. }
  27. }

代码示例来源:origin: org.osivia.portal.core/osivia-portal-jbossas-jbossweb-lib

  1. /* 1342 */ this.coyoteRequest.getAttributes().remove(name);

代码示例来源:origin: org.jboss.web/jbossweb

  1. coyoteRequest.getAttributes().remove(name);

代码示例来源:origin: jboss.web/jbossweb

  1. coyoteRequest.getAttributes().remove(name);

代码示例来源:origin: com.tomitribe.tribestream/tribestream-container

  1. request.getCoyoteRequest().getAttributes().entrySet().stream()
  2. .filter(e -> e.getKey().startsWith("com.tomitribe.tribestream."))
  3. .forEach(e -> ref.getIn().getAttributes().put(e.getKey(), e.getValue()));

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

  1. coyoteRequest.getAttributes().remove(name);

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

  1. coyoteRequest.getAttributes().remove(name);

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

  1. coyoteRequest.getAttributes().remove(name);

代码示例来源:origin: codefollower/Tomcat-Research

  1. Throwable t = (Throwable)req.getAttribute(
  2. RequestDispatcher.ERROR_EXCEPTION);
  3. req.getAttributes().remove(RequestDispatcher.ERROR_EXCEPTION);
  4. ReadListener readListener = req.getReadListener();
  5. if (readListener != null) {
  6. Throwable t = (Throwable)req.getAttribute(
  7. RequestDispatcher.ERROR_EXCEPTION);
  8. req.getAttributes().remove(RequestDispatcher.ERROR_EXCEPTION);
  9. if (res.getWriteListener() != null) {
  10. ClassLoader oldCL =

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. req.getAttributes().remove(RequestDispatcher.ERROR_EXCEPTION);
  2. ClassLoader oldCL = null;
  3. try {

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

  1. req.getAttributes().remove(RequestDispatcher.ERROR_EXCEPTION);
  2. ClassLoader oldCL = null;
  3. try {

相关文章

Request类方法