[JBoss JIRA] Created: (RF-8877) Incomplete resource names inside the developer guide for <rich:fileUpload/> component.
by Navor Nuñez Peredo (JIRA)
Incomplete resource names inside the developer guide for <rich:fileUpload/> component.
--------------------------------------------------------------------------------------
Key: RF-8877
URL: https://jira.jboss.org/browse/RF-8877
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 3.3.3.Final
Reporter: Navor Nuñez Peredo
Priority: Minor
When I was looking the documentation of *<rich:fileUpload/>* component inside the *http://docs.jboss.org/richfaces/3.3.X/3.3.3.Final/en/devguide/html/rich_fileUpload.html*, I seen the internationalization resource keys, but cannot found the resource key for "Done" label, so a tried with some values and then I found the properly resource key for "Done" label that it would *RICH_FILE_UPLOAD_DONE_LABEL*, but this resource key isn't described inside the documentation.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 9 months
[JBoss JIRA] Created: (RF-10259) Richfaces-showcase: GAE start time decreasing
by Ara Minosian (JIRA)
Richfaces-showcase: GAE start time decreasing
---------------------------------------------
Key: RF-10259
URL: https://issues.jboss.org/browse/RF-10259
Project: RichFaces
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Reporter: Ara Minosian
I found a way to reduce JSF based application to start faster on GAE.
1. Register all managed beans statically in faces-config.xml
2. Use metadata-complete="true" attribute, so faces-config.xml boilerplate is:
<?xml version='1.0' encoding='UTF-8'?>
<faces-config xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd"
version="2.0"
metadata-complete="true">
<!--Your stuff here-->
</faces-config>
Using this technique you force JSF not to scan classes for beans. You can leave bean annotations in source code for user's clarity. It will not produce any error.
3. Force JSF not to check xml syntax. I hope IDE do it instead. In web.xml set context parameter as here:
<context-param>
<description>
Set this flag to true if you want the JavaServer Faces
Reference Implementation to validate the XML in your
faces-config.xml resources against the DTD. Default
value is false.
</description>
<param-name>com.sun.faces.validateXml</param-name>
<param-value>false</param-value>
</context-param>
Using these tricks I reduce GAE start time by two seconds. Not bad.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months