org.opencms.flex

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 » Content Management System » opencms » org.opencms.flex 
org.opencms.flex
Provides low-level JSP integration funtionality for OpenCms, also implements the FlexCache, a declarative parameter-based cache.

How the JSP integration is done:

In OpenCms all resources are residing in the OpenCms Database, the so called "Virtual File System" or VFS. However, all JSP engines available read the JSP code from a file in the local file system. The option to re-write a JSP engine so that it can read from the VFS would limit OpenCms to running with this JSP engine only, which was not a choice. So the approach that was taken is to dump the contents of the OpenCms JSP page from the VFS to the "real" file system and then dispatch to the standard JSP engine.

Here is a top-level description of how this works:

  1. OpenCms gets the request through the {@link org.opencms.main.OpenCmsServlet}
  2. The requested resource is identified as a JSP page (resource type {@link org.opencms.file.types.CmsResourceTypeJsp})
  3. The JSP loader is started up with the resource manager {@link org.opencms.loader.CmsResourceManager}
  4. The JSP loader implements an additional interface: {@link org.opencms.loader.I_CmsResourceLoader}
  5. A resource loader is a new interface that was introduced with the FLEX release. The main difference is that the original request / response is wrapped using a Servlet standard {@link javax.servlet.http.HttpServletRequestWrapper} / {@link javax.servlet.http.HttpServletResponseWrapper}.
  6. On the first call to a page, the file contents of the JSP page are read from the OpenCms VFS using the {@link org.opencms.file.CmsObject}
  7. The contents of the page are written to the "real" file system of the server, in the default configuration to the directories {WEBAPP-PATH}/opencms/WEB-INF/jsp/online or {WEBAPP-PATH}/opencms/WEB-INF/jsp/offline (depending if the request was for the online or the offline version of the page). The directory used can be configured in opencms.properties.
  8. After the page is written to the "real" FS, the loader dispatches to the standard JSP mechanism with a simple include() call.
  9. The standard JSP mechanim will handle the JSP and deliver the output through the wrapped request / response back to OpenCms.
  10. OpenCms will then deliver the contents back to the user.
@version $Revision: 1.12 $ @since 6.0.0 @see org.opencms.flex.CmsFlexCache @see org.opencms.flex.CmsFlexCacheEntry @see org.opencms.flex.CmsFlexCacheKey
Java Source File NameTypeComment
CmsFlexCache.javaClass This class implements the FlexCache.

The data structure used is a two-level hashtable. This is optimized for the structure of the keys that are used to describe the caching behaviour of the entries. The first hash-level is calculated from the resource name, i.e.

CmsFlexCacheConfiguration.javaClass
CmsFlexCacheEntry.javaClass Contains the contents of a cached resource.

It is basically a list of pre-generated output, include() calls to other resources (with request parameters) and http headers that this resource requires to be set.

A CmsFlexCacheEntry might also describe a redirect-call, but in this case nothing else will be cached.

The pre-generated output is saved in byte[] arrays.

CmsFlexCacheException.javaClass
CmsFlexCacheKey.javaClass
CmsFlexController.javaClass
CmsFlexRequest.javaClass
CmsFlexRequestContextInfo.javaClass Contains information about the OpenCms request context required by the Flex implementation.

An instance of this class is attached to every CmsRequestContext as an attribute as soon as the request context is wrapped in a flex response.

CmsFlexRequestDispatcher.javaClass Implementation of the javax.servlet.RequestDispatcher interface to allow JSPs to be loaded from the OpenCms VFS.

This dispatcher will load data from 3 different data sources:

  1. Form the "real" os File system (e.g.
CmsFlexRequestKey.javaClass
CmsFlexResponse.javaClass
Messages.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.