Source Code Cross Referenced for FilterDispatcherCompatWeblogic61.java in  » J2EE » webwork-2.2.6 » com » opensymphony » webwork » dispatcher » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » webwork 2.2.6 » com.opensymphony.webwork.dispatcher 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        package com.opensymphony.webwork.dispatcher;
02:
03:        import com.opensymphony.webwork.config.ServletContextSingleton;
04:        import org.apache.commons.logging.Log;
05:        import org.apache.commons.logging.LogFactory;
06:
07:        import javax.servlet.Filter;
08:        import javax.servlet.FilterConfig;
09:        import javax.servlet.ServletContext;
10:        import javax.servlet.ServletException;
11:        import javax.servlet.http.HttpSession;
12:
13:        /**
14:         * When running Weblogic Server 6.1, this class should be
15:         * specified in web.xml instead of {@link FilterDispatcher}.
16:         * <p/>
17:         * This class properly handles the weblogic.jar handling
18:         * of servlet filters.  There is one serious incompatibility, and
19:         * that is that while {@link FilterDispatcher#init(FilterConfig)}
20:         * throws a {@link ServletException}, this class's method
21:         * {@link #setFilterConfig(FilterConfig)} does not throw
22:         * the exception.  Since {@link #setFilterConfig(FilterConfig)}
23:         * invokes {@link FilterDispatcher#init(FilterConfig)}, the setter
24:         * must "swallow" the exception.  This it does by logging the
25:         * exception as an error.
26:         *
27:         * @author Scott N. Smith scottnelsonsmith@yahoo.com
28:         * @version $Id: FilterDispatcherCompatWeblogic61.java 2339 2006-03-08 20:28:56Z rainerh $
29:         */
30:        public class FilterDispatcherCompatWeblogic61 extends FilterDispatcher
31:                implements  Filter {
32:            /**
33:             * the standard logger
34:             */
35:            private static Log log = LogFactory
36:                    .getLog(FilterDispatcherCompatWeblogic61.class);
37:
38:            /**
39:             * dummy setter for {@link #filterConfig}; this method
40:             * sets up the {@link com.opensymphony.webwork.config.ServletContextSingleton} with
41:             * the servlet context from the filter configuration.
42:             * <p/>
43:             * This is needed by Weblogic Server 6.1 because it
44:             * uses a slightly obsolete Servlet 2.3-minus spec
45:             * whose {@link Filter} interface requires this method.
46:             * <p/>
47:             *
48:             * @param filterConfig the filter configuration.
49:             */
50:            public void setFilterConfig(FilterConfig filterConfig) {
51:                try {
52:                    init(filterConfig);
53:                } catch (ServletException se) {
54:                    log
55:                            .error(
56:                                    "Couldn't set the filter configuration in this filter",
57:                                    se);
58:                }
59:
60:                ServletContextSingleton singleton = ServletContextSingleton
61:                        .getInstance();
62:                singleton.setServletContext(filterConfig.getServletContext());
63:            }
64:
65:            /**
66:             * answers the servlet context.
67:             * <p/>
68:             * Servlet 2.3 specifies that this can be retrieved from
69:             * the session.  Unfortunately, weblogic.jar can only retrieve
70:             * the servlet context from the filter config.  Hence, this
71:             * returns the servlet context from the singleton that was
72:             * setup by {@link #setFilterConfig(FilterConfig)}.
73:             *
74:             * @param session the HTTP session.  Not used
75:             * @return the servlet context.
76:             */
77:            protected ServletContext getServletContext(HttpSession session) {
78:                ServletContextSingleton singleton = ServletContextSingleton
79:                        .getInstance();
80:                return singleton.getServletContext();
81:            }
82:
83:            /**
84:             * This method is required by Weblogic 6.1 SP4 because
85:             * they defined this as a required method just before
86:             * the Servlet 2.3 specification was finalized.
87:             *
88:             * @return the filter's filter configuration
89:             */
90:            public FilterConfig getFilterConfig() {
91:                return super.getFilterConfig();
92:            }
93:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.