Re: EL 3.0 Static Field References

2015-03-27 Thread Leonardo Uribe
ar case (#{Boolean.TRUE}) > works as expected. > > Any thoughts on this? Let me know if I need to clarify anything. > > Regards, > > Bill Lucy > > > Leonardo Uribe wrote on 03/25/2015 06:10:00 PM: > >> From: Leonardo Uribe >

Re: EL 3.0 Static Field References

2015-03-27 Thread William Lucy
15 06:10:00 PM: > From: Leonardo Uribe > To: MyFaces Discussion > Date: 03/25/2015 06:11 PM > Subject: Re: EL 3.0 Static Field References > > Hi > > It is in the spec, it should work. > > There is some code in > org.apache.myfaces.el.unif

Re: EL 3.0 Static Field References

2015-03-25 Thread Leonardo Uribe
Hi It is in the spec, it should work. There is some code in org.apache.myfaces.el.unified.ResolverBuilderForFaces that deals with this: if (STATIC_FIELD_EL_RESOLVER_CLASS != null && GET_STREAM_EL_RESOLVER_METHOD != null) { try {

EL 3.0 Static Field References

2015-03-25 Thread William Lucy
Hi All, I'm running into some issues trying to test the EL 3.0 functionality on MyFaces 2.2.7 + Tomcat 8.0.16. My understanding is that we should be able to reference static fields/methods directly from facelets, eg. Boolean.TRUE test: [] should return "Boolean.TRUE test: [true]". This