<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: JSF2: How to add the magic of EL (EL2) to JSF</title> <atom:link href="http://ocpsoft.com/java/jsf2-java/jsf2-how-to-add-the-magic-of-el-el2-to-jsf/feed/" rel="self" type="application/rss+xml" /><link>http://ocpsoft.com/java/jsf2-java/jsf2-how-to-add-the-magic-of-el-el2-to-jsf/</link> <description>&#34;Simple Software&#34;</description> <lastBuildDate>Mon, 26 Jul 2010 23:17:02 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0</generator> <item><title>By: Jay</title><link>http://ocpsoft.com/java/jsf2-java/jsf2-how-to-add-the-magic-of-el-el2-to-jsf/#comment-1211</link> <dc:creator>Jay</dc:creator> <pubDate>Thu, 18 Feb 2010 20:12:47 +0000</pubDate> <guid
isPermaLink="false">http://ocpsoft.com/?p=164#comment-1211</guid> <description>classpath-prefix=”${com.sun.aas.installRoot}/lib/el-api.jar;${com.sun.aas.installRoot}/lib/el-impl.jar” in ${com.sun.aas.installRoot}/domains/your domain name/config/domain.xml under as an attribute.</description> <content:encoded><![CDATA[<p>classpath-prefix=”${com.sun.aas.installRoot}/lib/el-api.jar;${com.sun.aas.installRoot}/lib/el-impl.jar” in ${com.sun.aas.installRoot}/domains/your domain name/config/domain.xml under as an attribute.</p> ]]></content:encoded> </item> <item><title>By: Jay</title><link>http://ocpsoft.com/java/jsf2-java/jsf2-how-to-add-the-magic-of-el-el2-to-jsf/#comment-1210</link> <dc:creator>Jay</dc:creator> <pubDate>Thu, 18 Feb 2010 20:04:17 +0000</pubDate> <guid
isPermaLink="false">http://ocpsoft.com/?p=164#comment-1210</guid> <description>You can add JSF 2.0 and Unified EL (EL 2) magic to Glassfish V2.1.1 in 2 ways.1) If you want to completly replace JSF 1.x with 2.x in your glassfish V2.1.1 installation
a) Remove existing jsf-impl.jar in ${com.sun.aas.installRoot}/lib
b) Add following JSF2 and unified EL jars. i.e. jsf-api-2.1.jar, jsf-impl-2.1.jar,el-api-2.1.jar, el-impl-2.1.jar in in ${com.sun.aas.installRoot}/lib.
c) Add or update classpath-prefix=&quot;${com.sun.aas.installRoot}/lib/jsf-api.jar;${com.sun.aas.installRoot}/lib/jsf-imp.jar;${com.sun.aas.installRoot}/lib/el-api.jar;${com.sun.aas.installRoot}/lib/el-impl.jar&quot; in ${com.sun.aas.installRoot}/domains//config/domain.xml  under  as an attribute.2) If you want to keep JSF 1.x as the default implementation on your glassfish instance but want to implement JSF 2.x only on one of your applications
a) Add el-api-2.1.jar, el-impl-2.1.jar in ${com.sun.aas.installRoot}/lib.
b) Include jsf-api-2.1.jar, jsf-impl-2.1.jar in lib directory of your application war.
c) Add add sun-web.xml under /WEB-INF/ directory of your application war with following properties
mojarra2
d) Add or update classpath-prefix=&quot;${com.sun.aas.installRoot}/lib/el-api.jar;${com.sun.aas.installRoot}/lib/el-impl.jar&quot; in ${com.sun.aas.installRoot}/domains//config/domain.xml  under  as an attribute.Hope this helps. Enjoy!!!Note:  (This does not work in Glassfish V2.0 or V2.1)</description> <content:encoded><![CDATA[<p>You can add JSF 2.0 and Unified EL (EL 2) magic to Glassfish V2.1.1 in 2 ways.</p><p>1) If you want to completly replace JSF 1.x with 2.x in your glassfish V2.1.1 installation<br
/> a) Remove existing jsf-impl.jar in ${com.sun.aas.installRoot}/lib<br
/> b) Add following JSF2 and unified EL jars. i.e. jsf-api-2.1.jar, jsf-impl-2.1.jar,el-api-2.1.jar, el-impl-2.1.jar in in ${com.sun.aas.installRoot}/lib.<br
/> c) Add or update classpath-prefix=&#8221;${com.sun.aas.installRoot}/lib/jsf-api.jar;${com.sun.aas.installRoot}/lib/jsf-imp.jar;${com.sun.aas.installRoot}/lib/el-api.jar;${com.sun.aas.installRoot}/lib/el-impl.jar&#8221; in ${com.sun.aas.installRoot}/domains//config/domain.xml  under  as an attribute.</p><p>2) If you want to keep JSF 1.x as the default implementation on your glassfish instance but want to implement JSF 2.x only on one of your applications<br
/> a) Add el-api-2.1.jar, el-impl-2.1.jar in ${com.sun.aas.installRoot}/lib.<br
/> b) Include jsf-api-2.1.jar, jsf-impl-2.1.jar in lib directory of your application war.<br
/> c) Add add sun-web.xml under /WEB-INF/ directory of your application war with following properties</p><p> mojarra2</p><p> d) Add or update classpath-prefix=&#8221;${com.sun.aas.installRoot}/lib/el-api.jar;${com.sun.aas.installRoot}/lib/el-impl.jar&#8221; in ${com.sun.aas.installRoot}/domains//config/domain.xml  under  as an attribute.</p><p>Hope this helps. Enjoy!!!</p><p>Note:  (This does not work in Glassfish V2.0 or V2.1)</p> ]]></content:encoded> </item> <item><title>By: Using the Expression Language Maintenance Release (MR) (EL2) &#171; Matthias Wessendorf&#8217;s Weblog</title><link>http://ocpsoft.com/java/jsf2-java/jsf2-how-to-add-the-magic-of-el-el2-to-jsf/#comment-894</link> <dc:creator>Using the Expression Language Maintenance Release (MR) (EL2) &#171; Matthias Wessendorf&#8217;s Weblog</dc:creator> <pubDate>Fri, 11 Dec 2009 17:54:13 +0000</pubDate> <guid
isPermaLink="false">http://ocpsoft.com/?p=164#comment-894</guid> <description>[...] Check it out. Good read! [...]</description> <content:encoded><![CDATA[<p>[...] Check it out. Good read! [...]</p> ]]></content:encoded> </item> <item><title>By: Lincoln</title><link>http://ocpsoft.com/java/jsf2-java/jsf2-how-to-add-the-magic-of-el-el2-to-jsf/#comment-810</link> <dc:creator>Lincoln</dc:creator> <pubDate>Tue, 03 Nov 2009 05:56:03 +0000</pubDate> <guid
isPermaLink="false">http://ocpsoft.com/?p=164#comment-810</guid> <description>I don&#039;t know the answer to that one. Try it out :)</description> <content:encoded><![CDATA[<p>I don&#8217;t know the answer to that one. Try it out <img
src='http://ocpsoft.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>By: Faisal Basra</title><link>http://ocpsoft.com/java/jsf2-java/jsf2-how-to-add-the-magic-of-el-el2-to-jsf/#comment-809</link> <dc:creator>Faisal Basra</dc:creator> <pubDate>Tue, 03 Nov 2009 05:53:02 +0000</pubDate> <guid
isPermaLink="false">http://ocpsoft.com/?p=164#comment-809</guid> <description>That sound cool, but what about JSF 1.2? can we use EL 2.0 with JSF 1.2 ???Any idea....</description> <content:encoded><![CDATA[<p>That sound cool, but what about JSF 1.2? can we use EL 2.0 with JSF 1.2 ???</p><p>Any idea&#8230;.</p> ]]></content:encoded> </item> <item><title>By: Dan Allen</title><link>http://ocpsoft.com/java/jsf2-java/jsf2-how-to-add-the-magic-of-el-el2-to-jsf/#comment-762</link> <dc:creator>Dan Allen</dc:creator> <pubDate>Tue, 15 Sep 2009 14:36:30 +0000</pubDate> <guid
isPermaLink="false">http://ocpsoft.com/?p=164#comment-762</guid> <description>Technically JBoss EL 2.1 is not the same as EL 2 (which isn&#039;t EL 2 at all, but rather the EL being delivered in MR2 of the JSR-245: JSP 2.1 specification). I know, it&#039;s really confusing.You should see if you can use the actual EL implementation from the Java EE 6 reference implementation (GlassFish V3).</description> <content:encoded><![CDATA[<p>Technically JBoss EL 2.1 is not the same as EL 2 (which isn&#8217;t EL 2 at all, but rather the EL being delivered in MR2 of the JSR-245: JSP 2.1 specification). I know, it&#8217;s really confusing.</p><p>You should see if you can use the actual EL implementation from the Java EE 6 reference implementation (GlassFish V3).</p> ]]></content:encoded> </item> <item><title>By: JSF's &#60;h:dataTable&#62; vs &#60;ui:repeat&#62; - How to get the selected row (JSF2, EL2) &#124; OcpSoft</title><link>http://ocpsoft.com/java/jsf2-java/jsf2-how-to-add-the-magic-of-el-el2-to-jsf/#comment-758</link> <dc:creator>JSF's &#60;h:dataTable&#62; vs &#60;ui:repeat&#62; - How to get the selected row (JSF2, EL2) &#124; OcpSoft</dc:creator> <pubDate>Tue, 15 Sep 2009 02:56:50 +0000</pubDate> <guid
isPermaLink="false">http://ocpsoft.com/?p=164#comment-758</guid> <description>[...] instructions on how to: include EL2 in a JSF project go [...]</description> <content:encoded><![CDATA[<p>[...] instructions on how to: include EL2 in a JSF project go [...]</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Served from: ocpsoft.com @ 2010-07-29 17:21:38 by W3 Total Cache -->