13 Building Standards-Based Java Portlets Using JSR 286
Topics:
13.1 About Building Standards-Based Java Portlets Using JSR 286
WebCenter Portal supports standards-based Java portlets built using the JSR 286 standard.
JSR 286 is a specification that defines a set of APIs to enable interoperability between portlets and portals, addressing the areas of aggregation, personalization, presentation, and security. JSR 286 defines container services that provide:
-
A portlet API for coding portlet functionality
-
The URL-rewriting mechanism for creating user interaction within a portlet container
-
The security and personalization of portlets
-
Interportlet communication using portlet events and public render parameters
For more information, see the JSR 286 specification at:
http://jcp.org/en/jsr/detail?id=286
WSRP is a web services standard that enables the plug-and-play of visual, user-facing web services with portals or other intermediary web applications. Being a standard, WSRP enables interoperability between a standards-enabled container and any WSRP portal. WSRP defines:
-
Web Services Definition Language (WSDL) interface for the invocation of WSRP services
-
Markup fragment rules for markup emitted by WSRP services
-
The methods to publish, find, and bind WSRP services and metadata
WSRP provides communication between a portlet client and a portlet container running on a remote server. JSR 286 describes the Java Portlet API for running portlet producer applications. Combining these standards enables developers to integrate their applications from any internal or external source as portlets with WSRP portals. Building pages becomes as simple as selecting portlets from the JDeveloper Resource Palette or Application Resources pane of the Application Navigator.
Figure 13-1 shows the architecture of the WSRP specification with JSR 286 portlets.
Figure 13-1 WSRP Specification Architecture

Description of "Figure 13-1 WSRP Specification Architecture"
13.2 Creating a JSR 286 Java Portlet
WebCenter Portal provides a wizard, available in JDeveloper, for quickly and easily creating the initial framework of your JSR 286 standards-based Java portlets.
In the Create JSR 286 Java Portlet wizard, you can choose which portlet modes you want to implement and the implementation method (JSP, HTTP servlet, Java class, or HTML) to use for each mode. The wizard then creates a simple implementation for each of the selected modes.
To create a JSR 286 Java portlet using the JDeveloper wizard:
-
In JDeveloper, open the portlet producer application under which you want to create your portlet, or create a new portlet producer application.
For information about how to create a portlet producer application, see Portlet Producer Applications.
Note:
If you do not use the WebCenter Portal - Portlet Producer Application template to create the portlet producer application, you must manually add the appropriate portlet building technology scopes to the application.
-
Right-click the project under which you want to create your portlet (for example Portlets), and choose New.
-
In the New Gallery (Figure 13-2), expand Web Tier, select Portlets and then Standards-based Java Portlet (JSR 286), and click OK.
Figure 13-2 Standards-based Java Portlet (JSR 286) Option in the New Gallery
Description of "Figure 13-2 Standards-based Java Portlet (JSR 286) Option in the New Gallery"Tip:
If the project already contains JSR 286 portlets, you can also create a new portlet by:
-
Right-clicking
portlet.xml
and choosing Add Portlet. -
Opening
portlet.xml
, clicking the Design tab, and clicking the Add icon on the Portlets tab.
-
-
On the General Portlet Information page of the Create JSR 286 Java Portlet wizard, replace the default name provided in the Name field with one that better describes the purpose of the portlet.
-
In the Class field, enter a name for the class for the portlet. You can accept the default name provided or supply your own. If you supply your own name, it must be a valid Java name.
-
From the Package drop-down list, select the package in which to create the class, or enter a package name.
Click the Browse button to find packages within the project, if required. If you do not select a specific package, the wizard uses the default package of the project.
-
From the Language drop-down list, select the default language that your portlet supports. The wizard uses English by default.
-
Select Enable users to edit portlet content if you want your portlet to support Edit mode. In the wizard, this option is selected by default.
Edit mode enables users to personalize the portlet at runtime. For more information, see Edit Mode.
If you select this option, you can specify implementation details for the portlet's Edit mode later on in the wizard.
-
Click Next.
-
On the Additional Portlet Information page, in the Portlet Title field, enter a descriptive title for your portlet.
The portlet title is displayed in the resource catalog, so make the title something to help users decide whether the portlet is useful to them. The portlet title is also displayed on the portlet header when the portlet appears on a page.
Tip:
The Display Name, Short Title, Description, and Keyword attributes are not implemented in WebCenter Portal. You do not need to enter any values for these fields unless your portlet is likely to be consumed by other applications.
-
At this point in the wizard, you can click Finish to create the portlet immediately, using the default values for all remaining settings.
To provide additional details for your portlet, click Next and follow the remaining steps.
-
On the Content Types and Portlet Modes page, in the Content Types and Portlet Modes list, select view.
-
In the Implementation Method section, select how you want to implement View mode for your portlet (for more information about View mode, see View Mode):
-
Select Generate JSP to generate a skeleton JSP file for the portlet mode. Enter a name for the JSP in the corresponding field, or accept the default.
When you complete the wizard, the generated JSP displays in the Application Navigator where you can select it for further development. This is the default selection for all portlet display modes.
-
Select Generate ADF-Faces JSPX to generate a page to which you can add ADF-Faces components. Enter a name for the JSF page in the corresponding field, or accept the default.
If you choose this option, the portlet implementation class is created as a subclass of
oracle.portlet.bridge.adf.application.ADFBridgePortlet
, instead of as a subclass ofjavax.portlet.GenericPortlet
. That is, the wizard generates a portlet producer application which uses the Oracle JSF Portlet Bridge. For more information about the Oracle JSF Portlet Bridge, see Creating Portlets from JSF Applications Using the Oracle JSF Portlet Bridge. -
Select Map to Path to map the portlet mode to a web resource in the portlet producer application, such as a page. The resource is not generated by the wizard. Enter the name and path in the corresponding field. You can create this resource after completing the wizard if necessary.
With this selection, you must write the targeted resource or file yourself. The target could be, for example, a JSP, a servlet, or an HTML file. This selection enters code in the generated portlet Java class that routes requests for the given mode to the specified target.
-
Select Custom Code to implement the portlet mode through a custom coded object. You must create this object later. This selection generates a skeleton method to render content (
private void do
MODE_NAME
CONTENT_TYPE
) in the generated portlet java class. You must update this code to render useful content.
Tip:
If you want this portlet mode to support a different content type, for example
text/xml
, see Step 16. -
-
If you selected Enable users to edit portlet content on the first page of the wizard, select edit and then select the implementation method for Edit mode (for information about Edit mode, see Edit Mode), as described in step 13.
-
To implement another portlet mode for your portlet:
-
In the Content Types and Portlet Modes list, select an existing mode (for example, view) under the appropriate content type (for example, text/html).
-
Click Add.
-
In the Portlet Modes dialog, move the required mode or modes to the Selected list and click OK.
The Portlet Modes dialog lists the standard modes supported by JSR 286 and the extended modes supported by WebCenter Portal.
For more information, see Portlet Modes.
-
Select each of the portlet modes and specify the implementation method to use for rendering content, as described in step 13.
-
-
The content type identifies what type of content the portlet supports. Portlets can support multiple content types. By default, portlets created using the Create JSR 286 Java Portlet wizard support the
text/html
content type.To add a different content type:
-
In the Content Types and Portlet Modes list, select an existing content type (for example, text/html).
-
Click Add.
-
In the Content Types dialog, move the required content types to the Selected list and click OK.
-
text/html—The portlet supports text encoded with HTML. This is the default selection.
-
text/xml—The portlet supports text encoded with XML.
-
text/plain—The portlet supports plain, unencoded text.
-
text/vnd.oracle.mobilexml—The portlet supports text encoded with Oracle Mobile XML. Note, however, that WebCenter Portal does not support Oracle Mobile XML.
-
application/xhtml+xml—The portlet supports text encoded with XHTML.
-
application/xml—The portlet supports any XML content, including XHTML.
-
-
-
Click Next.
If you selected Enable users to edit portlet content on the General Portlet Information page earlier in the wizard, then you can create portlet preferences to enable users of the portlet to specify values for the portlet at runtime. Go to step 18.
If you did not select this option, go to step 24.
-
On the Customization Preferences page, click Add to add a new portlet preference to the portlet.
By default, the wizard includes a portlet preference to enable users to customize the portlet title.
-
In the Add New Preference dialog, in the Name field, enter a name for the new preference.
The name must be unique in the portlet and cannot contain spaces.
-
In the Default Values field, enter one or more default values for the new preference. Separate multiple values with commas.
-
Select the Translate Preference check box if you want to be able to make the preference available in different languages.
For example, if the portlet is likely to be consumed by a multilingual portal you want to ensure that the preference displays in the appropriate language.
If you enable this option, then entries for the preference are added to the resource bundle class that JDeveloper generates for the portlet.
Tip:
Edit the resource bundle to provide translations for the preference name and default values. The name will almost always require translating, but the default values may not, for example, if the value is an integer.
-
Click OK.
-
Repeat the preceding steps to add more preferences. When you are done click Next.
-
On the Security Roles page, to add an existing security role to your portlet, select the security role and move it to the Selected list.
Security roles enable you to set tiered levels of access to the portlet. For example, a
View
user can view the portlet but cannot edit it; aCustomize
user can customize portlet settings; aManage
user can perform all available functions associated with the portlet.The Available list displays the security roles defined for the application in which you are creating the portlet. Moving a security role to the Selected list creates a reference of the security role in the application's portlet deployment file (
portlet.xml
) that refers to the security role in the application's web deployment file (web.xml
).You can create new security roles for the application by editing
web.xml
. For more information, see the JDeveloper online help. -
Click Next.
-
On the Caching Options page, select Cache Portlet to enable expiry-based caching for your portlet.
For more information about expiry-based caching, see Portlet Performance and Implementing Expiry-Based Caching in JSR 286 Portlets.
Selecting this option indicates that portlet caching is managed by the portlet container. The portlet itself may choose to cache content for any given response. The settings on this page apply only when the portlet itself does not specify a caching condition for a response.
If you do not want any default caching for this portlet, choose Do Not Cache By Default. In this case, the wizard actually sets a cache duration of 0 seconds. As stated earlier, this cache setting only comes into play when the portlet itself does not specify a caching condition for a response.
If you choose no caching here and you later decide to implement default caching for the portlet, then you can change the cache duration value in the
portlet.xml
file, which is generated by the wizard, to a number greater than zero.For information about how to implement validation-based caching, see Implementing Validation-Based Caching in JSR 286 Portlets.
-
If you chose to cache the portlet, in the Default Expiry Conditions section, select:
-
Cache Content Expires After []seconds to expire the cached portlet content after a certain amount of time. Specify the time limit in the corresponding field.
-
Cache Content Never Expires to never expire the cached portlet content. You may want to select this option if the portlet contains static content that is unlikely to change.
-
-
Click Next.
-
On the Initialization Parameters page, you can add initialization parameters to your portlet.
Initialization parameters provide the application developer, who decides what goes into the WAR file, an alternative to JNDI variables for configuring the behavior of all of the different components of the application (for example, servlets and portlets) in a compatible way. These initialization parameters are added to the
portlet.xml
file.For example, you might want to turn on some kind of debugging mode for the portlet or display different menu options in different environments.
-
Click New to add a new initialization parameter to the portlet.
-
In the newly added row, double-click each field to provide a Name, default Value, and Description for the parameter.
-
Repeat these steps to add more initialization parameters.
-
When you are done, click Finish to create the portlet.
-
When you use the Create JSR 286 Java Portlet wizard, JDeveloper generates a default implementation of the portlet. Specifically, the following files are created:
-
Java classes:
-
portletName
.java
is invoked by the portlet container and contains all the methods required by the portlet standards. -
portletName
Bundle.java
contains all the translation strings for the portlet. -
portletName
Backing.java
contains the JSF backing bean for the JSF pages that implement portlet modes. This class is created if you implement portlet modes as ADF-Facelets JSP pages.
-
-
portlet.xml
is the portlet deployment descriptor file for the application. -
web.xml
is the web deployment descriptor file for the application. -
Files for each portlet mode you selected for the portlet:
-
If you selected Generate JSP for the portlet mode, a JSP page is created for the mode, for example,
view.jsp.
-
If you selected Generate ADF-Faces JSPX, a JSF (
.jspx
) page is created for the mode, for example,view.jspx
. You can add Faces components to this page. -
If you selected Map to Path, no additional files are created as the code for the portlet mode resides in an existing resource. Code is added to the portlet's Java class to route requests to the specified target.
-
If you selected Custom Code, no additional files are created, but the code for the portlet mode resides in the portlet's Java class.
-
-
faces-config.xml
is a configuration file that registers an application's resources, such as custom validators and managed beans and describes the page flow of the application. This file is created if you implement portlet modes as ADF-Facelets JSF pages.
You can see all the files in the Application Navigator, as shown in Figure 13-3.
Figure 13-3 Files Generated for a JSR 286 Java Portlet

Description of "Figure 13-3 Files Generated for a JSR 286 Java Portlet"
13.3 Developing JSR 286 Java Portlets
When you have built your initial portlet implementation using the Create JSR 286 Java Portlet wizard, the next step is to create the code that drives the portlet content and behavior. Because JSR 286 portlets adhere to the Java standards, you can find substantial information about enhancing them from many different sources, such as third-party books and web pages, including:
http://jcp.org/en/jsr/detail?id=286
This section includes the following topics:
13.3.1 Example Portlet Deployment Descriptor File
The following example shows an example portlet deployment descriptor file.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <portlet-app version="2.0" xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd" xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <portlet id="1328624289503"> <portlet-name>myPortlet</portlet-name> <display-name xml:lang="en-US">Portlet1</display-name> <display-name xml:lang="en">English Display Name</display-name> <portlet-class>portlet.Portlet1</portlet-class> <expiration-cache>300</expiration-cache> <supports> <mime-type>text/html</mime-type> <portlet-mode>edit</portlet-mode> </supports> <supported-locale>en-US</supported-locale> <resource-bundle>portlet.resource.Portlet1Bundle</resource-bundle> <portlet-info> <title>This Is My Portlet</title> <short-title>My Portlet</short-title> <keywords/> </portlet-info> <portlet-preferences> <preference> <name>portletTitle</name> </preference> </portlet-preferences> </portlet> <custom-portlet-mode> <portlet-mode>about</portlet-mode> </custom-portlet-mode> <custom-portlet-mode> <portlet-mode>config</portlet-mode> </custom-portlet-mode> <custom-portlet-mode> <portlet-mode>edit_defaults</portlet-mode> </custom-portlet-mode> <custom-portlet-mode> <portlet-mode>preview</portlet-mode> </custom-portlet-mode> <custom-portlet-mode> <portlet-mode>print</portlet-mode> </custom-portlet-mode> </portlet-app>
13.3.2 How to Edit the Portlet Deployment Descriptor File
The portlet deployment descriptor file for the application, portlet.xml
, specifies the portlet resources in the application. After you have created your JSR 286 portlet using the wizard, you can edit the portlet.xml
file to edit the portlet resources.
When you open the portlet.xml
file in JDeveloper, you can edit the source code or you can use the Overview Editor to edit portlet resources without having to manually modify it in the Source view.
To edit the portlet deployment descriptor file:
13.3.3 Portlet Modes for JSR 286 Portlets
The standard modes supported by JSR 286 are:
-
View
-
Edit
-
Help
WebCenter Portal supports the following additional custom modes for JSR 286 portlets:
-
About
-
Config
-
Edit Defaults
-
Preview
-
Print
13.3.4 How to Add Custom Portlet Modes to JSR 286 Portlets
In the Create JSR 286 Java Portlet wizard, you add portlet modes by adding them to a list on the Content Types and Portlet Modes page. For more information about using the wizard, see Creating a JSR 286 Java Portlet.The wizard enables you to implement the standard modes supported by JSR 286 and the extended modes provided by WebCenter Portal.
After the initial creation of the portlet, you can also define your own custom portlet modes.
The principles of implementing portlet modes are the same for all modes.
To add a custom portlet mode:
13.3.5 How to Access User Information in JSR 286 Portlets
You can create user attributes in the portlet producer application to access commonly used user information, such as user.login.id
or user.name.family
. At runtime, these user attributes are mapped to the actual attributes of the current user. Portlets can use this information to obtain information about the current user.
To access user information:
13.3.6 How to Customize the Runtime Environment for JSR 286 Portlets
When a portlet is run, the portlet container provides the runtime environment and provides an interface between the portlet producer application and the portlet.
Container runtime options provide a way to customize the behavior of the portlet container and therefore customize the runtime environment.
This section includes the following topics:
13.3.6.1 Supported Container Runtime Options
Table 13-1 lists the container runtime options supported by the WebCenter Portal portlet container.
For more information about the JSR 286 container runtime options, see the JSR 286 specification at:
Table 13-1 Supported Container Runtime Options
Container Runtime Option | Supported by | JSR 286 Standard |
---|---|---|
Application Portlet |
Yes |
|
Application Portlet |
Yes |
|
java.portlet.renderHeaders |
Not supported |
Yes |
javax.portlet.servletDefaultSessionScopejavax.portlet.servletDefaultSessionScope |
Application Portlet |
Yes |
Application |
No |
|
Application |
No |
|
Application Portlet |
No |
|
com.oracle.portlet.defaultProxiedResourceRequiresWsrpRewrite |
Application Portlet |
No |
Application Portlet |
No |
|
Application Portlet |
No |
|
Application Portlet |
No |
|
Application |
No |
|
Application Portlet |
No |
|
Application Portlet |
No |
|
Application Portlet |
No |
|
Application Portlet |
No |
|
Application Portlet |
No |
|
Application Portlet |
No |
|
Application Portlet |
No |
|
com.oracle.portlet.renderHeaders |
Application Portlet |
No |
Application Portlet |
No |
|
Application Portlet |
No |
|
Application Portlet |
No |
|
Application Portlet |
No |
|
Application Portlet |
No |
|
Application |
No |
|
Application Portlet |
No |
|
Portlet |
No |
|
Portlet |
No |
|
Portlet |
No |
13.3.6.1.1 javax.portlet.actionScopedRequestAttributes
Specifies whether to store action-scoped request attributes so that they are available to portlets until a new action occurs.
You can use the WebCenter Portal-specific excludedActionScopeRequestAttributes
container runtime option
to limit which request attributes are stored in the scopes.
Valid values:
-
true
—store request attributes starting atprocessAction
until the nextprocessAction
. You can specify a second value ofnumberOfCachedScopes
and a third value indicating the number of scopes to be cached by the portlet container. -
false
—do not store request attributes.
13.3.6.1.2 javax.portlet.escapeXml
Specifies whether to XML encode URLs returned from actionUrl
, renderUrl
, and resourceUrl
JSR 286 tag library tags.
You can override this option on a per-tag basis using the encodeXml
attribute.
Valid values:
-
true
—(default) the URLs returned by theactionUrl
,renderUrl
, andresourceUrl
tags are XML encoded (using ampersand entities for parameter separation). -
false
—the URLs returned by the actionUrl, renderUrl, and resourceUrl tabs are not XML encoded (and use just ampersand characters).
Note:
This option does not have any effect on the return value of PortletURL.toString()
or ResourceURL.toString()
. In both these cases, for JSR 286, the output uses only ampersand characters. To use ampersand entities or to be able to specify the XML encoding to use when generating URLs not using the tag libraries, see the BaseURL.write()
methods.
13.3.6.1.3 javax.portlet.servletDefaultSessionScope
Specifies the scope of the session object provided to servlets or JSPs that are included or forwarded from a Java portlet.
Valid values:
-
APPLICATION_SCOPE
—(default) map the portlet session with application scope. -
PORTLET_SCOPE
—map the portlet session with portlet scope.
13.3.6.1.4 com.oracle.portlet.allowEventPayloadsWithoutJAXBBinding
Allows event payload types declared in portlet.xml
and event payloads sent from JSR 286 portlets to bypass the JSR 286 spec requirement that these types have a valid JAXB binding.
Valid values:
-
true
—event payloads without valid JAXB bindings are allowed. -
false
—event payloads without valid JAXB bindings are not allowed, per the JSR 286 specification.
13.3.6.1.5 com.oracle.portlet.allowWsrpExport
Specifies whether the WSRP export-portlets operation should be supported for the web application.
This option is used mainly for backward-compatibility; it is preferred to control the export-portlets operation through the wsrp-producer-config.xml
setting.
Valid values:
-
true
—(default) export-portlets is allowed. -
false
—export-portlets is not allowed. This overrides the setting inWEB-INF/wsrp-producer-config.xml
.
13.3.6.1.6 com.oracle.portlet.compatibilityMode
Set to owc168
to invoke the WebCenter Portal JSR 286 container JSR 168 compatibility
mode.
This also automatically sets
the disallowResourceServing
runtime option to true
if no other value for that option is specified.
13.3.6.1.7 com.oracle.portlet.defaultProxiedResourceRequiresWsrpRewrite
Specifies the default WSRP requiresRewrite
flag to use when encoding URLs for resources not served by the portlet. This setting is used for all URLs returned by the PortletResponse.encodeURL()
method, unless overridden by the presence of the oracle.portlet.server.resourceRequiresRewriting
request attribute when the PortletResponse.encodeURL()
method is called.
Valid values:
-
true
—(default) therequiresRewrite
flag is set totrue
, indicating that the resource should be rewritten by the consumer. -
false
—therequiresRewrite
flag is set tofalse
, indicating that the resource does not necessarily need to be rewritten by the consumer.
13.3.6.1.8 com.oracle.portlet.defaultServedResourceRequiresWsrpRewrite
Specifies the default WSRP requiresRewrite
flag to use when generating resource URLs for portlet-served resources.
This setting is used for all resource URLs created by the portlet, unless overridden by the presence of the resourceRequiresRewriting
request attribute when the resource URL methods write()
or toString()
are called. This setting is also used to specify the WSRP requiresRewriting
flag on the served resource response, but can be overridden by the presence of the resourceRequiresRewriting
request attribute when the portlet's serveResource()
method returns.
Valid values:
-
true
—therequiresRewrite
URL flag andrequiresRewriting
response flag are set totrue
, indicating that the resource should be rewritten by the consumer -
false
—therequiresRewrite
URL flag andrequiresRewriting
response flag are set tofalse
, indicating that the resource does not necessarily need to be written by the consumer, although the consumer may choose to rewrite the URL.
If unspecified, the requiresRewrite
URL flag is not given a value, and the requiresRewriting
response flag for a serveResource
operation is based on the MIME type of the response.
13.3.6.1.9 com.oracle.portlet.disallowResourceServing
Specifies whether portlets are allowed to serve resources. This is useful if JSR 168 portlets are run in the 286 container, as any JSR 168 portlet extending javax.portlet.GenericPortlet
automatically inherits the JSR 286 functionality, which automatically forwards resource requests to a file in the web application named after the resource ID, creating a potential security problem. For the same security reason, JSR 286 portlets that do not serve resources are safest to disallow resource serving.
Valid values:
-
true
—portlets are not allowed to serve resources. -
false
—portlets are allowed to serve resources.
13.3.6.1.10 com.oracle.portlet.escapeXmlEncodeUrls
Specifies whether the JSR 286 container should XML-encode URLs generated from the PortletResponse.encodeURL()
method.
Valid values:
-
true
—URLs generated by thePortletResponse.encodeURL()
method are XML-encoded. -
false
—(default) URLs generated byPortletResponse.encodeURL()
are not XML-encoded.
13.3.6.1.11 com.oracle.portlet.eventPayloadsXmlType
Specifies optional XML schema types for JAXB-bindable Java object event payloads if events are sent over WSRP. This is a multi-valued runtime option; each value consists of a Java class name and QName pair, separated by a colon (:
). The QName should use the standard Java String representation of a QName ({
namespace
}
localpart
). For each value specified, the QName is used as the XML schema type to annotate WSRP event payloads of the specified Java object type after the object has been marshalled to XML. This may be useful when using events to communicate across portlets on multiple producers.
13.3.6.1.12 com.oracle.portlet.excludedActionScopeRequestAttributes
This is a multi-valued property with each value being a regular expression. Request attributes which match any of the regular expressions are not stored as action-scoped request attributes if the javax.portlet.actionScopedRequestAttributes
container runtime option is used, in addition to any request parameters whose values match the regular expressions defined in the com.oracle.portlet.externalScopeRequestAttributes
container runtime option.
13.3.6.1.13 com.oracle.portlet.externalScopeRequestAttributes
This is a multi-valued property with each value being a regular expression. Request attributes which match any of the regular expressions are considered outside of portlet scope, and are shared with the underlying portal request.
If the javax.portlet.actionScopedRequestAttributes
option is used, any request attributes matching the regular expressions declared in externalScopeRequestAttributes
are not stored in the action scope request attributes.
13.3.6.1.14 com.oracle.portlet.importCssToIFrame
Specifies to a portal consumer whether the CSS file should be imported to an IFRAME portlet.
Valid values:
-
false
—(default) nothing is done. -
true
—the CSS file from the consumer is applied to an IFRAME portlet.
13.3.6.1.15 com.oracle.portlet.minimumWsrpVersion
Specifies minimum required WSRP version for the portlet to work. If the WSRP version being used is less than the value specified, the portlet will not be included in a WSRP GetServiceDescription
, GetPortletDescription
, GetMarkup
and other WSRP responses.
Valid values:
-
1
-
2
13.3.6.1.16 com.oracle.portlet.offerPortletOverWsrp
Specifies whether the portlet is offered in the WSRP producer's service description.
Any offerRemote
setting in a .portlet
file referencing the JSR 168/286 portlet overrides this container runtime option.
Valid values:
-
true
—(default) the portlet is offered in the WSRP producer's service description. -
false
—the portlet is not included in the service description.
If not specified at all, the default value specified in the WEB-INF/producer-config.xml
is used.
13.3.6.1.17 com.oracle.portlet.portalInfoProvider
Specifies the class name of an optional implementation of com.bea.portlet.container.IPortalInfo
interface. This implementation defines the value returned by the JSR 286 container's request.getPortalContext().getPortalInfo()
. The default implementation returns the producer/local server name and version, but a custom implementation could pass both the consumer server information and the producer server information in a WSRP scenario.
13.3.6.1.18 com.oracle.portlet.redirectAfterAction
Causes the JSR 286 container to send a redirect to the browser to the portlet's render URL after a processAction
is run (and after events are handled) so that reloading the resulting page will not result in another processAction
.
Valid values:
-
true
—a redirect is issued after every portlet action. -
false
—no redirect is not automatically issued after portlet actions.
13.3.6.1.19 com.oracle.portlet.requireIFrame
Specifies whether the portlet must be rendered inside an IFRAME.
Valid values:
-
true
—renders the portlet inside an IFRAME. -
false
—does not force the portlet to be rendered inside an IFRAME.
13.3.6.1.20 com.oracle.portlet.streamingOptimized
Indicates the portlet is optimized to run in streaming mode, which may enhance performance.
Valid values:
-
true
—the portlet is optimized to run in streaming mode. -
false
—the portlet is not optimized to run in streaming mode.
13.3.6.1.21 com.oracle.portlet.suppressWsrpOptimisticRender
Suppresses the optimistic render of a portlet after the action and/or event lifecycles if the portlet is being run over WSRP.
Valid values:
-
true
—optimistic render is always suppressed. -
false
—optimistic render may be performed.
13.3.6.1.22 com.oracle.portlet.trapWsrpRenderExceptions
Specifies whether the JSR 286 container should send exceptions during render as WSRP SOAP faults, or render an exception message for the portlet markup instead.
Valid values:
-
true
—exceptions are not sent as SOAP faults but instead as rendered exception stack traces. -
false
—(default) exceptions generated by the portlet during render are treated as SOAP faults.
13.3.6.1.23 com.oracle.portlet.trimEncodeUrls
Specifies whether the JSR 286 container should trim whitespace from URLs passed to the PortletResponse.encodeURL()
method.
Valid values:
-
true
—(default) leading and trailing whitespace is trimmed from the URL passed intoPortletResponse.encodeURL()
. -
false
—whitespace is not trimmed from the URL passed intoPortletResponse.encodeURL()
.
13.3.6.1.24 com.oracle.portlet.useWsrpUserContextForUserAuthentication
Specifies whether the PortletRequest methods getRemoteUser()
, getUserPrincipal()
and isUserInRole()
are based on the WSRP user context information or on standard J2EE security.
Valid values:
-
true
—the user information is based on the WSRP user context, if the portlet is run over WSRP. This can be a security problem so use this option with care. -
false
—(or the portlet is not being run over WSRP) the user information is based on the J2EE authenticated user.
13.3.6.1.25 com.oracle.portlet.wsrpHeaderMode
Used only when portlets are being rendered as WSRP remote portlets, to indicate where cookies and headers should be put in the WSRP SOAP response as a hint to the WSRP consumer for the header or cookie's intended final destination.
When portlets are run locally (not over WSRP), headers and cookies set by portlets are always assumed to go to the client. Setting this container runtime option sets a default value for the PortletRequest
attribute com.oracle.portlet.wsrpHeaderMode
, which can still be overridden by the portlet at runtime on a per-header basis.
Valid values:
-
client
—headers and cookies set by the portlet are directed to go to the client (for example, the browser). -
consumer
—headers and cookies set by the portlet are directed to go to the consumer and not passed on to the client. -
both
—headers and cookies set by the portlet are directed to go to the client and the consumer.
If not set, the portlet container assumes the default value for the producer as specified in the WEB-INF/wsrp-producer-config.xml
file.
13.3.6.1.26 com.oracle.portlet.wsrpLegacyPortletHandle
Allows the specification of a legacy WSRP portlet handle to be used for the portlet, which must be unique within the web application. This is useful for backward-compatibility with WebCenter Portal consumers that use the legacy, portlet-position-based WSRP portlet handles.
If specified, the legacy portlet handle is published in the WSRP serviceDescription as a legacy-handle extension on the portlet, and consumers are able to access the portlet using the legacy portlet handle, although the portlet will not be published in the WSRP serviceDescription under the legacy portlet handle.
13.3.6.1.27 com.oracle.portlet.wsrpPortletHandle
Allows the specification of the WSRP portlet handle to be used for the portlet, which must be unique within the web application.
13.3.6.1.28 oracle.portlet.bridge.adf.raiseUndeclaredContextualEvents
Allows the Oracle JSF Portlet Bridge to raise ADFm events that do not have corresponding portlet events declared in the portlet.xml
file.
Valid values:
-
true
—any ADFm event raised is forwarded on as a portlet event. -
false
—only events with corresponding portlet event declarations are forwarded.
13.3.6.2 Setting Container Runtime Options for All Portlets in an Application
Setting container runtime options at the application level affects all the portlets in the application.
To set application-level container runtime options:
13.3.7 How to Use Public Render Parameters in JSR 286 Portlets
This section includes the following topics:
13.3.7.1 About Public Render Parameters
Public render parameters enable portlets to share parameter values, allowing a form of interportlet communication.
For example, if a Map portlet and a Weather portlet are both configured to use a Zipcode public render parameter, entering a zip code in the Map portlet updates the same parameter value in the Weather portlet.
Any public render parameters supported by a portlet must be declared in the application section of the portlet deployment descriptor file (portlet.xml
). Public render parameters defined at the application level in this way are available to all the portlets in the application.
Individual portlets within the application can then specify which of these public render parameters they want to use.
If you declare and define public render parameters as described below, interportlet communication happens automatically, without any further coding required on your part.
For more information about public render parameters and how to implement them, see the JSR 286 specification at:
13.3.7.2 Declaring a Public Render Parameter at the Application Level
For a public render parameter to be available to a portlet, it must first be declared in the application section of the portlet deployment descriptor file (portlet.xml
).
To define a public render parameter at the application level:
-
Open the Overview Editor for the
portlet.xml
file.For more information, see How to Edit the Portlet Deployment Descriptor File.
-
Click the Parameters tab.
-
Click the Add icon to create a new public render parameter.
-
From the drop-down list, select whether you are specifying a fully qualified name (QName) for the parameter, or just the local part of the name.
-
Qualified Name—A QName uniquely identifies the public render parameter across applications by specifying a namespace for the parameter as well as a local name. Within the portlet code, a public render parameter is accessed by its identifier, which identifies the parameter uniquely within the application. However, a page typically contains multiple portlets which may come from different applications. Using QNames ensures that public render parameters from one portlet do not unintentionally interfere with the other portlets on a page regardless of where those portlets come from.
-
Unqualified Name—If the namespace for the parameter is the same as the application default namespace, you can omit the namespace when defining the parameter by specifying an unqualified name. If the application default namespace has not been defined, a parameter with an unqualified name uses the XML default namespace.
Tip:
To check whether an application default namespace has been defined, click the Application tab and see if a value has been entered in the Default Namespace field.
-
-
Enter a name for the parameter.
-
If you selected Qualified Name—in the Namespace field, enter the namespace for the parameter and in the Name field, enter the local part of the parameter name.
-
If you selected Unqualified Name—in the Name field, enter the local part of the parameter name. The parameter uses the application default namespace as the namespace for the parameter (or the XML default namespace if no default namespace is defined for the application).
-
-
In the Identifier field, enter a name to identify the public render parameter within the application.
The identifier must be unique within the application and is used to identify the parameters used by a portlet and in the portlet code to access the parameter. Using the identifier means that portlet developers do not need to be aware of the parameter's fully qualified name; they simply need to know the simpler application-specific identifier.
-
In the Description field, enter a description for the public render parameter. The description should provide enough information so that portlet developers can determine how to use this parameter in their portlets.
-
(Optional) In the Aliases panel, you can provide a list of aliases so that the parameter can accept values from other public render parameters even if they have different QNames.
-
Click the Create icon to create a new alias for the parameter.
-
In the Namespace field, enter the namespace of the parameter to use for the alias.
-
In the Name field, enter the local part of the parameter to use for the alias.
Tip:
When creating aliases for public render parameters, it is a good idea to set up reciprocal aliases. So if a parameter in portlet A has an alias to a parameter in portlet B, you should also, if possible, create an alias for the parameter in portlet B to the parameter in portlet A.
-
-
The public render parameter is added to the application definition section of the
portlet.xml
file, as shown below.<public-render-parameter> <description>Parameter for zip code</description> <identifier>Zip</identifier> <qname xmlns:x="http://example.com/params">x:Zip</qname> <alias xmlns:x="http://example.com/params">x:ZipCode</alias> </public-render-parameter>
-
Save the
portlet.xml
file.
13.3.7.3 Defining a Public Render Parameter for a Portlet
If you want a portlet to support a public render parameter, add it to the portlet.
To add a public render parameter to a portlet:
13.3.7.4 Using Public Render Parameters: An Example
The following example shows how to use public parameters to link the behavior of two portlets using parameters with different names. In the example, we take a generic Parameter Form portlet that allows us to update public render parameters, and show how that can be linked to a Stock Price portlet that renders stock prices, taking the stock symbol from a public render parameter. The generic name of the parameter from the Parameter Form portlet (parameter1
) does not match the name of the parameter in the Stock Price portlet (stocksymbol
), so the developer of the Stock Price portlet uses an alias to provide a link between the two parameters.
The example below shows an excerpt from the portlet.xml
file for the portlet producer application that contains the Parameter Form portlet. The portlet producer application defines a public render parameter (parameter1
) that is supported by the Parameter Form portlet.
<portlet-app ...> <portlet id="1234567890"> ... <supported-public-render-parameter> parameter1 </supported-public-render-parameter> ... </portlet> ... <public-render-parameter> <description xml:lang="en">First parameter set by portlet</description> <identifier>parameter1</identifier> <qname xmlns:op="http://xmlns.oracle.com/portlet/oracle-portlet-app"> op:parameter1 </qname> </public-render-parameter> ... </portlet-app>
The code for the Parameter Form portlet sets the value of the parameter1
portlet when a value is entered in the portlet:
public void processAction(ActionRequest request, ActionResponse actionResponse) throws PortletException, IOException { // //Read the new parameter value posted in the portlet form // String param1 =actionResponse.getParameter("form_param1"); // //Set the new parameter values. These will be intepreted by the //container as public render parameters as the names match the names //of the declared parameters. // actionResponse.setRenderParameter("parameter1", param1); }
The following example shows an excerpt from the portlet.xml
file for the portlet producer application that contains the Stock Price portlet. This portlet producer application also defines a public render parameter (stocksymbol
) that is supported by the Stock Price portlet. For the stocksymbol
parameter to link to the Parameter Form portlet's parameter, an alias for parameter1
is added.
<portlet-app ...> <portlet> ... <supported-public-render-parameter> stocksymbol </supported-public-render-parameter> ... </portlet> ... <public-render-parameter> <description xml:lang="en">The stock symbol</description> <identifier>stocksymbol</identifier> <qname xmlns:s="http://www.oracle.com/stocks">s:stocksymbol</qname> <!-- Alias matches the Parameter Form portlet's first parameter name --> <alias xmlns:op="http://xmlns.oracle.com/portlet/oracle-portlet-app"> op:parameter1 </alias> </public-render-parameter> ... </portlet-app>
The code for the Stock Price portlet reads the value of the public render parameter posted by the Parameter Form portlet:
public void doView(RenderRequest request, RenderResponse response) throws PortletException, IOException { response.setContentType("text/html; charset=UTF-8"); PrintWriter out =response.getWriter(); //Retrieve any values for the public render parameter. //The parameter is looked up in the request using its identifier in portlet.xml //(not it's name or alias). String symbol =request.getParameter("stocksymbol"); ... }
When these two portlets are dropped onto the same page, they are automatically linked together. Entering a value in the first parameter field of the Parameter Form portlet causes the Stock Price portlet to be updated with the new value.
13.3.8 How to Use Portlet Events in JSR 286 Portlets
This section includes the following topics:
13.3.8.1 About Portlet Events
Portlet events are a JSR 286 feature that enables interportlet communication by providing portlets with the ability to respond to actions that occur outside of the portlet itself, for example an action performed on the page that contains the portlet or on another portlet on the same page. Portlet events can be cascaded so that a portlet may respond to an event by triggering an event of its own, which in turn affects other portlets on the page.
Any portlet events supported by a portlet must be declared in the application section of the portlet deployment descriptor (portlet.xml
). Portlet events defined at the application level in this way are available to all the portlets in the application.
Individual portlets within the application can then specify which of these portlet events they want to use. Portlets can declare events that they are interested in receiving, called processing events, and events that they trigger, called publishing events.
If you declare and define portlet events as described below, interportlet communication happens automatically, without any further coding required on your part.
For more information about portlet events and how to implement them, see the JSR 286 specification at:
13.3.8.2 Declaring a Portlet Event at the Application Level
For a portlet event to be available to a portlet, it must first be declared in the application section of the portlet deployment descriptor file (portlet.xml
).
To define a portlet event at the application level:
-
Open the Overview Editor for the
portlet.xml
file.For more information, see How to Edit the Portlet Deployment Descriptor File.
-
Click the Events tab.
-
Click the Add icon to create a new portlet event.
-
From the drop-down list, select whether you are specifying a fully qualified name (QName) for the portlet event, or just the local part of the name.
-
Qualified Name—A QName uniquely identifies the portlet event across applications by specifying a namespace for the event as well as a local name. A page typically contains multiple portlets which may come from different applications. Using QNames ensures that portlet events from one portlet do not unintentionally interfere with the other portlets on a page regardless of where those portlets come from.
-
Unqualified Name—If the namespace for the portlet event is the same as the application default namespace, you can omit the namespace when defining the event by specifying an unqualified name. If the application default namespace has not been defined, a portlet event with an unqualified name uses the XML default namespace.
Tip:
To check whether an application default namespace has been defined, click the Application tab and see if a value has been entered in the Default Namespace field.
-
-
Enter a name for the portlet event.
-
If you selected Qualified Name—In the Namespace field, enter the namespace for the portlet event and in the Name field, enter the local part of the event name.
-
If you selected Unqualified Name—In the Name field, enter the local part of the portlet event name. The event uses the application default namespace as the namespace for the event (or the XML default namespace if no default namespace is defined for the application).
-
-
In the Payload Type field, enter or browse for the data type of the payload provided by the portlet event.
-
In the Description field, enter a description for the portlet event.
-
(Optional) In the Aliases panel, you can provide a list of aliases so that a portlet event can be recognized by the portlet even if it has a different QName from the one defined by the portlet.
-
Click the Create icon to create a new alias for the portlet event.
-
In the Namespace field, enter the namespace of the portlet event to use for the alias.
-
In the Name field, enter the local part of the portlet event to use for the alias.
-
-
The portlet event is added to the application definition section of the
portlet.xml
file, as shown below.<event-definition id="latLong"> <qname xmlns:x="http://xmlns.oracle.com/portlet/EventSample"> x:latLong </qname> <value-type>portlet.LatLong</value-type> </event-definition>
-
Save the
portlet.xml
file.
13.3.8.3 Defining a Processing Event for a Portlet
If you want a portlet to listen for a particular portlet event, define it as a processing event.
To add a processing event to a portlet:
13.3.8.4 Defining a Publishing Event for a Portlet
If you want a portlet to trigger a particular portlet event, define it as a publishing event.
To add a publishing event to a portlet:
13.3.8.5 Using Portlet Events: An Example
The following example shows how to use portlet events to use the actions in one portlet to affect another portlet on the same page. In the example, we have a portlet, the Department Locations portlet, that lists the geographical locations of a company's various offices. The example shows how that portlet can be linked to another portlet, the Map portlet, which displays a Google map of the location selected in the Department Locations portlet.
The example below shows an excerpt from the portlet.xml
file for the portlet producer application that contains the two portlets. The portlet producer application defines a portlet event (latLong
) that is supported by the two portlets. The payload of the event is an object that encapsulates the latitude and longitude of a location.
<event-definition id="latLong"> <qname xmlns:x="http://xmlns.oracle.com/portlet/EventSample">x:latLong</qname> <value-type>portlet.LatLong</value-type> </event-definition>
The next example shows that the Department Locations portlet uses the latLong
event as a publishing event. That is, it raises the event under particular circumstances.
<portlet id="locations"> ... <supported-publishing-event> <qname xmlns:x="http://xmlns.oracle.com/portlet/EventSample">x:latLong<qname> </supported-publishing-event> ... </portlet>
The Department Locations portlet raises the latLong
event in its processAction
method if a location is selected in the portlet (see example below). It also sets the payload of the event to the latitude and longitude of the selected location.
public void processAction(ActionRequest request, ActionResponse response) throws PortletException { String locationId =request.getParameter("locationId"); Location location =getLocation(Integer.parseInt(locationId)); if (location != null) { //QName matches the event declared as a supported-publishing-event in //portlet.xml for this portlet. //LatLong event used by the Map portlet. response.setEvent(new QName("http://xmlns.oracle.com/portlet/EventSample", "latLong"), new LatLong(location.getLatitude(), location.getLongitude())); } }
The example below shows another portlet, the Map portlet, that also uses the latLong
event, but this time as a processing event. That is, it listens out for the event and takes a particular action if the event is raised elsewhere on the page.
<portlet id="map"> ... <supported-processing-event id="latLong"> <qname xmlns:x="http://xmlns.oracle.com/portlet/EventSample">x:latLong</qname> </supported-processing-event> ... </portlet>
The processEvent
method for the Map portlet receives the latLong
event and uses the payload from that event to set the LAT_LONG_PARAMETER
render parameter, which the portlet uses during rendering to determine the location to display in the Google map:
@Override public void processEvent(EventRequest request, EventResponse response) throws PortletException, IOException { response.setRenderParameters(request); Event event =request.getEvent(); if (event.getName().equals("latLong")) { response.setRenderParameter(LAT_LONG_PARAMETER, event.getValue().toString()); } }
Tip:
In this case, the events used by the Department Locations and Map portlets have the same name (latLong
). If the Map portlet listens for an event using a different name (for example, geolocation
), the two portlets could still be automatically linked by defining an alias for the geolocation
event in the portlet.xml
file as follows:
<event-definition id="geolocation"> <qname xmlns:x="http://xmlns.oracle.com/portlet/Map"> x:geolocation </qname> <alias xmlns:x="http://xmlns.oracle.com/portlet/EventSample"> x:latLong </alias> <value-type>portlet.LatLong</value-type> </event-definition>
Note, however, that the payload type of the two events must be the same for automatic linking to work.
Note:
For an event payload to be passed between portlets it must be possible to form an XML payload from event payload. For this to be possible one of the following must be true:
-
The payload must have a JAXB binding, for example by adding the
XmlRootElement
annotation to the portlet class:package portlet; import java.io.Serializable; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement(namespace="http://xmlns.oracle.com/portlet/EventSample") public class LatLong implements Serializable { private final double _latitude; private final double _longitude; ...
-
The
allowEventPayloadsWithoutJAXBBindings
container runtime option must be set totrue
inportlet.xml
.For more information, see How to Customize the Runtime Environment for JSR 286 Portlets.
13.3.9 How to Add Portlet Preferences to JSR 286 Portlets
This section includes the following topics:
13.3.9.1 About Portlet Preferences
Portlet preferences enable end users to personalize or customize portlets at runtime. Personalizations are visible only to the user that performs them; not to other users. Customizations are visible to all users who have not personalized the portlet.
By default, when you create a JSR 286 portlet using the JDeveloper wizard, a portlet preference is created to enable users to change the title of the portlet at runtime. You can create additional portlet preferences, either during portlet creation or by editing the portlet.xml
file after portlet creation, to enable end users to make other modifications to the portlet at runtime.
For information about how to add a portlet preference to the portlet.xml
file after portlet creation, see Adding a Portlet Preference to a JSR 286 Portlet. For information about how to add a portlet preference during portlet creation, see Creating a JSR 286 Java Portlet.
13.3.9.2 Adding a Portlet Preference to a JSR 286 Portlet
To enable users to modify portlet behavior or content at runtime, you must create portlet preferences for those attributes of the portlet that you want users to be able to modify.
To add a portlet preference to a portlet:
13.3.10 How to Use Portlet Filters in JSR 286 Portlets
This section includes the following topics:
13.3.10.1 About Portlet Filters
Portlet filters are a JSR 286 feature that enables you to alter the content of a portlet at runtime. A portlet filter is a reusable Java component that can transform the content of portlet requests and portlet responses. Filters do not generally create a response or respond to a request as portlets do, rather they modify or adapt the requests and responses.
For more information about portlet filters and how to implement them, see the JSR 286 specification at:
13.3.10.2 Adding a Portlet Filter to an Application
For a portlet to be able to use a portlet filter, the filter must first be defined within the application.
To add a portlet filter to an application:
-
Open the Overview Editor for the
portlet.xml
file.For more information, see How to Edit the Portlet Deployment Descriptor File.
-
Click the Filters tab.
-
Click the Add icon to create a new portlet filter.
-
In the Create Portlet Filter dialog you can either create a new portlet filter, or select a previously created portlet filter:
-
To create a new portlet filter:
-
Select New Portlet Filter.
-
In the Name field, enter a name for the portlet filter.
The name must be unique within the application and use only letters, numbers, and the underscore character.
-
In the Package field, enter or browse for the package to contain the new filter class.
-
Select one or more of the Lifecycle Phase check boxes to specify which of the
javax.portlet.filter
interfaces the filter class implements:Action—The filter class implements the
ActionFilter
interfaceEvent—The filter class implements the
EventFilter
interface.Render—The filter class implements the
RenderFilter
interface.Resource—The filter class implements the
ResourceFilter
interface.Tip:
When you create a new filter class using the Create Portlet Filter dialog, you can specify which of the filter interfaces the filter class implements. After the filter class has been created, you cannot add or remove filter interfaces through the Overview Editor. Instead, you must edit the source of the filter class directly to manually add or remove the interfaces and the
doFilter
methods defined for those interfaces.
-
-
To select an existing portlet filter:
-
Select Choose from Existing Class.
-
Enter or browse for the filter class.
-
-
-
Click OK.
-
In the Display Name field, enter a more user-friendly name for the portlet filter.
-
In the Description field, enter a description for the portlet filter.
-
In the Initialization Parameters panel, you can specify initialization parameters that pass values to the
init()
method of the filter class.-
Click the Add icon to specify an initialization parameter for the portlet filter.
-
In the Name field, enter the name of the initialization parameter.
-
In the Value field, enter the value to pass to the initialization parameter.
-
In the Description field, enter a description of the initialization parameter.
The portlet filter is added to the application definition section of the
portlet.xml
file, as shown below.<filter> <display-name>Test Filter</display-name> <filter-name>filter_1</filter-name> <filter-class>javaportlets.MyFilter</filter-class> <lifecycle>ACTION_PHASE</lifecycle> <lifecycle>RENDER_PHASE</lifecycle> </filter>
-
-
Save the
portlet.xml
file.
13.3.10.3 Applying a Portlet Filter to a Portlet
After the portlet filter has been defined in the application, you can then apply it to one or more portlets within the application. You can also specify the order in which portlet filters are applied to portlets.
To apply a portlet filter to a portlet:
13.3.11 How to Implement Interportlet Communication Across Different Pages
Generally, interportlet communication occurs between portlets that are displayed on the same page. However, it is possible to communicate between portlets on different pages, as shown in the following example.
To implement interportlet communication across different pages:
Tip:
You can also create a single generic eventHandler
and add it to the page template. By adding a method binding in the page template, this is available on all pages. By using a wildcard for the publisher, you can also make sure that it listens to all events with a specific name.
For more information and to download a sample application, see the blog entry at:
http://www.ateam-oracle.com/inter-portlet-communication-between-pages/
13.3.12 How to Enhance JSR 286 Portlet Performance with Caching
This section includes the following topics:
13.3.12.1 About Portlet Caching
When you have completed the basic functionality of your portlet, you may want to turn your attention to portlet performance.
Caching is a common technique for enhancing the performance of web sites that include a great deal of dynamic content. JSR 286 portlets support expiry-based and validation-based caching.
For more information about caching, see Portlet Performance.
13.3.12.2 Implementing Expiry-Based Caching in JSR 286 Portlets
You can choose to implement expiry-based caching when you first create a portlet using the Create JSR 286 Portlet Wizard. However, during the initial development of a portlet, you may prefer to turn portlet caching off and implement it later in the development cycle when the portlet content becomes more stable. You may also want to edit the expiration period, or change the cache scope.
To implement expiry-based caching:
13.3.12.3 Implementing Validation-Based Caching in JSR 286 Portlets
Implementation of validation-based caching takes place after the initial portlet creation and requires hand coding.
The example below shows how a GenericPortlet
would typically implement its doView()
method such that the consumer caches the markup using validation-based caching. The example also shows how expiry-based caching can be defined programmatically (using the CacheControl.setExpirationTime()
method) and used in conjunction with validation-based caching to further reduce the load on the producer. This would work equally well for serveResource()
.
protected void doView (RenderRequest request, RenderResponse response) throws PortletException, IOException { CacheControl cacheControl =response.getCacheControl(); String eTag =request.getETag(); if (isMarkupStillValid(eTag)) { //Wait 30 seconds before checking ETag again cacheControl.setExpirationTime(30); //Tell consumer to use its cached content cacheControl.setUseCachedContent(true); return; } //ETag not valid so set a new one ... //Define a new ETag cacheControl.setETag(generateETag(...)); //Wait 60 seconds before checking ETag again cacheControl.setExpirationTime(60); //... and generate fresh portlet markup createMarkup(request, response); } private boolean isMarkupStillValid(String eTag) { if (eTag ==null) { return false; //No ETag was supplied } //Perform portlet specific checks for the consumer's cached //copy of the markup still being valid based on the given ETag ... } private String generateETag(...) { //Portlet specific code to generate an ETag, for example, a hash //of the data on which the portlet's markup is based ... return eTag; }
For more information about validation-based caching in JSR 286 portlets, see the JSR 286 specification at:
13.3.13 How to Implement Rewritten URLs for Resource Proxy
Resource proxying is the standard way to retrieve resources with WSRP. To avoid problems with URLs within your portlet, you can set a flag to rewrite all of the URLs within a specified resource. For example, if you have an HTML fragment that contains URLs, then you could set this flag to rewrite its URLs taking into account the WSRP resource proxying.
To indicate that URLs should be rewritten, set the PortletRequest
attribute, oracle.portlet.server.resourceRequiresRewriting
, to true
. For example, you might include code similar to the excerpt in the code below to use resource proxying for a URL that you are encoding. Encapsulate this code within a method to avoid repeating it for every URL individually.
request.setAttribute("oracle.portlet.server.resourceRequiresRewriting", Boolean.TRUE); String url =response.encodeURL(pathToResourceForRewriting); request.removeAttribute("oracle.portlet.server.resourceRequiresRewriting");
If you do not specifically set oracle.portlet.server.resourceRequiresRewriting
, then it defaults to false
, meaning that URLs are not rewritten. You must explicitly activate the feature by setting this attribute to true
.
You can use the defaultProxiedResourceRequiresWsrpRewrite
container runtime option to specify the default WSRP requiresRewrite
flag to use. The option specified by this container runtime option (which is set to true
by default) is used unless overridden by the request attribute. For more information, see "com.oracle.portlet.defaultProxiedResourceRequiresWsrpRewrite."
13.3.14 How to Implement Stateless Resource Proxying
If you have out of protocol resources that do not require rewriting, you may want to use stateless resource proxying. Stateless resource proxying means that the URLs returned to the browser do not require portlet IDs or any other contextual information. This increases the cache hit ratio for such resources. You might find stateless resource proxying useful for functionality such as static JavaScript files, static images, and so on.
To indicate that stateless proxying is required, set the PortletRequest
attribute oracle.portlet.server.useStatelessProxying
to true
. For example, you might include code similar to the excerpt in the code below to use stateless proxying for a URL that you are encoding. Encapsulate this code within a method to avoid repeating it for every URL individually.
request.setAttribute("oracle.portlet.server.useStatelessProxying", Boolean.TRUE); String url =response.encodeURL(pathToResource); request.removeAttribute("oracle.portlet.server.useStatelessProxying");
If you do not specifically set oracle.portlet.server.useStatelessProxying
, it defaults to false
. You must explicitly activate the feature by setting this attribute to true
.
13.3.15 How to Manage the Persistence Store for JSR 286 Portlets
This section includes the following topics:
13.3.15.1 About the Persistence Store
The portlet persistence store is used for persisting consumer registration handles and portlet preference data. Portlet producers can use one of three types of persistence store:
-
Consumer—Ties the producer metadata to the consumer application. This is the recommended method.
-
Database—Persists data using a relational database. This is mainly provided for backward compatibility but may be useful if there is likely to be a large number of customizations.
-
File—Persists data using the file system. This is provided for backward compatibility. You should not use a file based persistence store in your production environment as it does not support multi-tier or high availability environments. You may, however, want to use a file based persistence store while testing your application using Integrated WLS.
For more information, see Portlet Personalization and Customization.
13.3.15.2 JNDI Variables for WSRP Producer Persistence Store
Table 13-2 lists and describes the JNDI variables used to specify the persistence store for WSRP producers.
Table 13-2 WSRP Producer Database Preference Store-Related JNDI Variable
Variable Name | Variable Value | Description |
---|---|---|
|
|
Determines which data store (File, Database, or Consumer) is used for persisting a portlet producer application's consumer registration handles and portlet preferences. |
|
|
Defines the path to the root directory to be used by the file preference store. Absolute paths are interpreted relative to the file system root. Relative paths are interpreted relative to the Note that all producers running within the same WebLogic Server must use the same path for this variable. Otherwise, you get a |
13.3.15.3 Setting Up a Persistence Store for a WSRP Producer
WSRP portlet producers use a JNDI variable (persistentStore
) to determine which type of persistence store to use. When you create a portlet for the first time in an application, by default this variable is set to Consumer
. You can change the value of this variable in the web.xml
file of the portlet producer application.
Note:
If you create a portlet in an application that already contains other portlets, the existing persistence store setting is maintained.
If you use a File persistence store, you must also use the fileStoreRoot
JNDI variable to specify the path to the root directory to be used by the persistence store. See JNDI Variables for WSRP Producer Persistence Store.
To set up the persistence store for a WSRP portlet producer:
13.3.15.4 Migrating a WSRP Producer Persistence Store
If you want to change the type of persistence store used by your portlet producer, for example when moving from a testing to production environment, you can migrate the existing data from the old to the new persistence store.
This section includes the following topics:
13.3.15.4.1 Migrating a Database or File-Based Persistence Store
The WSRP portlet producer persistence store migration utility, PersistenceMigrationTool
, enables you to migrate existing data between Database and File-based persistence stores (for example, from a File-based persistence store used for testing to a production Database persistence store). This utility also enables upgrading users to ensure that their existing locale-specific portlet preference data uses a naming format compatible with the latest JPS release. You can also use this utility to migrate between source and destination stores of the same type, enabling data to be moved from one database store to another.
Note:
There are several libraries that must be referenced in the classpath when running the PersistenceMigrationTool
utility:
-
wcs-producer-spi.jar
-
portlet-utils.jar
-
portlet-producer-container-common.jar
-
portlet-producer-container-persistence.jar
-
oracle-portlet-api.jar
-
wsrp-container.jar
-
oracle-portlet-tags.jar
-
ojdbc6.jar
The ojdbc6.jar
library referenced in the classpath must be the same as the one used by your database.
To migrate a database or file-based persistence store:
The example below demonstrates running the PersistenceMigrationTool
utility. In this example, preferences from a File store are copied to a Database store.
./java -classpath ORACLE_COMMON_HOME/modules/oracle.wccore/portlet-producer-container-persistence.jar: ORACLE_COMMON_HOME/modules/oracle.wccore/portlet-producer-container-common.jar: ORACLE_COMMON_HOME/modules/oracle.adf.share.ca/adf-share-base.jar: ORACLE_COMMON_HOME/modules/oracle.wccore/portlet-utils.jar: ORACLE_COMMON_HOME/modules/oracle.wccore/wcs-producer-spi.jar: ORACLE_COMMON_HOME/modules/oracle.adf.share/adflogginghandler.jar: DB_ORACLE_HOME/jdbc/lib/ojdbc6.jar oracle.portlet.server.containerimpl.PersistenceMigrationTool -sourceType file \ -sourcePath /data/prefs -destType db \ -destUsername scott \ -destPassword tiger \ -destDatabase abc.mycompany.com:1521:yourdatabase \
where:
-
ORACLE_COMMON_HOME
is your Oracle Common home -
DB_ORACLE_HOME
is your database Oracle home if it is on the same machine as the WebCenter Portal Oracle home. If the database Oracle home is on a separate machine, then you must copy theDB_ORACLE_HOME/jdbc/lib
directory into a temporary directory on the WebCenter Portal Oracle home and reference theojdbc6.jar
library from this temporary directory in the classpath.
13.3.15.4.2 Migrating to or from a Consumer Persistence Store
You cannot use the persistence store migration utility to migrate to or from a consumer persistence store. To migrate to or from a consumer persistence store, you must export the data from one producer from the consumer and import into another.
To migrate a consumer persistence store:
13.3.15.4.3 Moving a WSRP Portlet Producer
If you move a portlet producer to a different server, you may also have to move the persistence store for the producer.
After installing the new producer, move the persistence store according to the following:
-
Consumer persistence store—Because the data is stored with the consumer, there is no requirement to move the persistence store.
-
Database persistence store—Perform one of the following:
-
Configure the new producer to point the WebLogic Server data source to the same database as the original producer.
-
Migrate the persistence store using the Persistence Store Migration Utility (see Migrating a WSRP Producer Persistence Store for more information).
-
-
File persistence store—Perform one of the following:
-
Configure the new producer to point the same file system location as the original producer.
-
Migrate the persistence store using the Persistence Store Migration Utility (see Migrating a WSRP Producer Persistence Store for more information).
-
Finally, update the URL of the producer registration by using Enterprise Manager Fusion Middleware Control or the WLST command setWSRPProducerRegistration
.
13.4 Testing JSR 286 Portlets
Before making your portlets available in a production environment, it is highly advisable to test them first to make sure that they behave as expected.
This section includes the following topics:
13.4.1 How to Run a WSRP Portlet Producer on Integrated WebLogic Server
The Integrated WebLogic Server (Integrated WLS) provides a quick and easy way of testing your portlets because it is preconfigured so that you can run applications within JDeveloper without needing to create deployment profiles.
To test a JSR 286 portlet on Integrated WLS:
What Happens When You Run a WSRP Portlet Producer on Integrated WebLogic Server
These configurations vary depending upon the portlet requirements.
-
WSDLs and other configuration files are added to the WEB-INF directory to configure the portlets as a web service.
-
The
web.xml
file is updated with listener and server classes, filters, parameters, and other configurations that are required to run the JSR 286 portlet producer application successfully.For example, the
oracle.portlet.server.adapter.web.ServerContextListener
class,WSRP_v2_PortletManagement_Service
andWSRPBaseService
filters, and so on. -
Libraries required for JSR 286 portlets are added to the
weblogic.xml
file, for example,oracle.portlet-producer.wsrp
.
When you run a WSRP portlet producer on Integrated WLS, the following happens:
13.4.2 How to Deploy a WSRP Portlet Producer to the Integrated WebLogic Server
When you run a WSRP portlet producer application on the Integrated WLS instance, when the instance stops, the application is undeployed and therefore becomes unavailable. For a more persistent testing scenario, you can deploy your portlet producer application to the Integrated WLS so that it is always available while the Default Server is running.
If you choose this method, then you must first create deployment profiles. If you deploy your application to the Integrated WLS, then the Deployment Configuration dialog displays to enable you to configure and customize deployment settings. The file system MDS repository precreated by JDeveloper displays in the Repository Name field.
13.4.3 How to Hide or Remove the WSRP Test Page
For security purposes, you may want to hide the WSRP test page so that it is visible only to administrators, or you may want to remove it entirely.
This section includes the following subsections:
Note:
There is also a Webservice test page, which enables you to build up SOAP requests to the producer in a web browser. For WSRP portlet producers this test page is disabled by default. Although this test page does not provide any useful information for testing your portlet producers, you can enable it, if desired, by extracting the oracle-webservices.xml
file from the deployed producer's WAR file, setting the expose-testpage
flag to true
for both WSRP v1 and WSRP v2 producers, and then repacking the WAR and EAR files and redeploying the producer.
13.4.3.1 Hiding the WSRP Test Page
If you do not want all users to be able to see the WSRP test page, you can protect it so that only administrators can see it.
To hide the WSRP test page:
13.5 Migrating WebLogic Portal Portlets to WebCenter Portal
In general, JSR 286 standard portlets (Java portlets) that were developed with the WebLogic Portal's Eclipse IDE can be moved directly to a WebCenter Portal/JDeveloper environment. Simply copy all of the portlet artifacts (portlet.xml
, .java
files, .jsp
files, and so on) into a JDeveloper Portlet Producer application project.
Note:
Any WebLogic Portal specific APIs used by the portlet must be rewritten to use WebCenter Portal APIs. WebLogic Portal specific APIs will not work in a WebCenter environment.
Tip:
You can use the WebLogic Portal Export feature to export your Java portlets to an archive file and then import the archive file into your JDeveloper project. This technique may be simpler than manually copying all the portlet artifacts from one environment to another. See Exporting Java Portlets for Use on Other Systems in the Portlet Development Guide for Oracle WebLogic Portal.
Moving portlets from a WLP development environment to a WebCenter Portal development environment is not directly supported. In general, this process can involve substantial rewriting or refactoring of the migrated portlet code and related files.
Note:
If a portlet (regardless of type) was capable of running over WSRP in WebLogic Portal, the portlet can be consumed directly from the WebLogic Portal's portlet producer in a WebCenter Portal consumer. See WSRP Interoperability with Oracle WebCenter Portal and Oracle Portal in the Federated Portals Guide for Oracle WebLogic Portal.
Below are some general guidance on moving WLP portlets into WebCenter Portal's portlet producer environment.
-
JSP portlets –Moving JSP portlets directly into a WebCenter Portal project is not supported. You can consider refactoring the JSP portlet into a JSR286 portlet and then migrate it.
-
JSR 168/286 portlets –Most Java (JSR 168 /286) portlets can be directly imported to a WebCenter Portal portlet producer and run as JSR286 portlets. Some JSR168 portlets that take advantage of specific error conditions guaranteed by the JSR168 specification may need to be run in a JSR168 compatibility mode. See JSR-286/JSR-168 Portlet Compatibility in the Portlet Development Guide for Oracle WebLogic Portal. JSR168 portlets using WLP's proprietary eventing (event subscriptions declared in a
.portlet
file) must be re-written to use JSR286 events. -
Java Page Flow portlets –JPF portlets are not supported by WebCenter Portal's portlet producer and must be either consumed from a WebLogic Portal WSRP producer or refactored to become JSR286 or JSF portlets.
-
JSF portlets –If the portlet is written to the JSR329 JSF Portlet bridge in WLP, it should run on a WebCenter producer with no changes. For portlets using the WLP "native" JSF portlet bridge, the portlet must be consumed from a WebLogic Portal producer or upgraded to a JSF 1.2 portlet using the JSR329 bridge. See also Working With JSF-Java Portlets in the Portlet Development Guide for Oracle WebLogic Portal.
-
Struts portlets –Moving Struts portlets directly into a WebCenter Portal project is not supported. You can consider refactoring the JSP portlet into a JSR286 portlet and then migrate it.
-
Content Presenter portlets –WLP Content Presenter portlets will not work over WSRP and will not work with WebCenter Portal. However, equivalent functionality is available in WebCenter Portal's Content Presenter. See Publishing Content Using Content Presenter in Building Portals with Oracle WebCenter Portal.
-
Remote (WSRP) portlets –Remote (WSRP) portlets consumed in WLP can be consumed in a WebCenter Portal's consumer instead. Remote portlets taking advantage of WLP-specific WSRP features may need modification. For example the custom data transfer feature must be replaced by using events or shared parameters to convey data. See WSRP Interoperability with Oracle WebCenter Portal and Oracle Portal and Configuring WSRP Security Between WLP and a WebCenter Portal: Framework Application in the Federated Portals Guide for Oracle WebLogic Portal.
Problems inherent in moving WebLogic Portal portlets directly to a WebCenter Portal project in JDeveloper can include the following:
-
URL Generation –Some URL types supported by WebLogic Portal do not work in WebCenter Portal, including DesktopURL, CustomEventURL, PageURL, WindowURL, StandalonePortletURL, and possibly others.
-
Events –The WebCenter Portal consumer does not generate all of the events that the WebLogic Portal framework generates. These unsupported events include Init, LookAndFeelReinit, Notification, Refresh, WindowActivation, WindowDeactivation, and possibly others.
-
Render Dependencies –WLP render dependencies do not work in WebCenter Portal.
-
WLP Framework APIs –Many WLP APIs are not supported in WebCenter Portal.
13.6 Files Related to JSR 286 Portlets
This section describes the files that are created for you when you build a JSR 286 portlet. It includes the following topics:
13.6.1 portlet.xml
portlet.xml
defines the characteristics of your JSR 286 portlet. For complete details on portlet.xml
, you should see the Java Portlet Specification available at:
http://jcp.org/en/jsr/detail?id=168
The example below provides a sample fragment from a portlet.xml
file. Note that this example does not include all of the available elements of portlet.xml
.
Example portlet.xml
<portlet> <description xml:lang="en">JSR 286 map portlet </description> <portlet-name>portlet1</portlet-name> <display-name xml:lang="en">Map Portlet</display-name> <portlet-class>jsrportlet.MapPortlet</portlet-class> <expiration-cache>0</expiration-cache> <supports> <mime-type>text/html</mime-type> <portlet-mode>edit</portlet-mode> <portlet-mode>help</portlet-mode> <portlet-mode>about</portlet-mode> </supports> <supported-locale>en</supported-locale> <resource-bundle>jsrportlet.resource.MapPortletBundle</resource-bundle> <portlet-info> <title>Map Portlet</title> <short-title>Map</short-title> <keywords/> <portlet-preferences> <preference> <name>portletTitle</name> </preference> </portlet-preferences> <security-role-ref> <role-name>viewer</role-name> </security-role-ref> </portlet>
For JSR 286 portlets, the portlet.xml
file contains all information related to portlets and their settings. Note that not all of these settings are used in the previous sample.
-
<description>
describes the portlet, providing details to the end user. -
<portlet-name>
uniquely identifies the portlet within the Portlet Producer application. -
<display-name>
is used when presenting a list of available portlets to the user. -
<portlet-class>
contains the fully qualified class name of the class implementing thejavax.portlet.Portlet
interface or extending theGenericPortlet
abstract class that becomes the entry point for the portlet logic. The portlet container uses this class when it invokes the portlet lifecycle methods. For JSF portlets created using the Oracle JSF Portlet Bridge, this isoracle.portlet.bridge.adf.application.ADFBridgePortlet
. -
<expiration-cache>
the default duration (in seconds) of the expiration cache. -
<init-param>
defines initialization parameters for configuring the behavior of the portlet. The Oracle JSF Portlet Bridge uses initialization parameters to identify the entry points for the different portlet modes supported by the portlet, for example, for View mode:<init-param> <name>javax.portlet.faces.defaultViewId.view</name> <value>/myPage.jspx</value> </init-param>
Initialization parameters for other WebCenter Portal-supported modes are:
-
Edit mode:
javax.portlet.faces.defaultViewId.edit
-
Help mode:
javax.portlet.faces.defaultViewId.help
-
About mode:
javax.portlet.faces.defaultViewId.about
-
Config mode:
javax.portlet.faces.defaultViewId.config
-
Edit Defaults mode:
javax.portlet.faces.defaultViewId.edit_defaults
-
Preview mode:
javax.portlet.faces.defaultViewId.preview
-
Print mode:
javax.portlet.faces.defaultViewId.print
Note:
The value for the
defaultViewId
is relative to the application context root and must always start with a /. In the example provided, the value fordefaultViewId.view
is/myPage.jspx
.If you add a
defaultViewId
for other portlet modes, then you must also add the mode to the<supports>
tag. For example,<portlet-mode>HELP</portlet-mode>
. -
-
<supports>
provides information about the portlet modes supported for each content type. Portlet modes supported by WebCenter Portal include:edit
,help
,about
,config
,edit_defaults
,preview
, andprint
. -
<supported-locale>
lists the locales supported by the portlet at runtime. -
<resource-bundle>
is the fully qualified class name of the resource bundle used to provide language specific portlet information, such as title and keywords. -
<title>
is the static title of the portlet, usually displayed in the portlet decoration on the portlet window. -
<short-title>
is the title that is used on devices (such as mobile phones) that have limited display capabilities. -
<keywords>
are used by applications that offer search capabilities for their users. -
<portlet-preferences>
are preference attribute definitions. -
<supported-processing-event>
are events that the portlet can receive. -
<supported-publishing-event>
are events that the portlet raises. -
<supported-public-render-parameter>
is a public render parameter supported by the portlet. -
<container-runtime-option>
an option for defining additional runtime behavior. -
<security-role-ref>
maps a role name to a security role inweb.xml
. The list of roles inweb.xml
that the<security-role-ref>
maps to is published to the consumer as the producer's user categories. Inweb.xml
,<security-role>
appears similar to the following:<security-role> <description>Viewer role</description> <role-name>viewer</role-name> </security-role>
13.6.2 oracle-portlet-tags.jar
oracle-portlet-tags.jar
is the Oracle implementation of the JSP tag library defined by the Java Portlet Specification.
13.6.3 portlet_mode.jsp
Depending on the implementation style of the portlet mode that you choose to create for your portlet, a corresponding JSP file is created in your portlet_name
\html
directory to define that mode. For example, if you choose to have View and Edit modes for your portlet, then you need view.jsp
and edit.jsp
in your portlet_name
\html
directory. For JSR 286 portlets, you can have the following JSP files for your portlet modes:
-
about.jsp
-
config.jsp
-
edit_defaults.jsp
-
edit.jsp
-
help.jsp
-
preview.jsp
-
print.jsp
-
view.jsp
For further explanation of portlet modes, see Portlet Modes.
13.6.4 portlet_name.java
portlet_name
.java
is the class that acts as the entry point for the portlet logic. This class must implement the javax.portlet.Portlet
interface or extend the GenericPortlet
abstract class. The portlet container uses this class when it invokes the portlet lifecycle methods.
13.6.5 portlet_nameBundle.jar
portlet_name
Bundle.jar
is a resource bundle class, containing translation of the strings used by the portlet.
13.6.6 web.xml
web.xml
is a Java EE standard descriptor that contains details about Web applications. For more information about web.xml
, see Configuring the web.xml File for Application Server Compatibility in Developing Fusion Web Applications with Oracle Application Development Framework.