the struts tests run fine. The 3 tests failing in xwork are related to setter/getters to having the same type, so given a class:
class IAmHungryWhatTimeIsIt { private int number; public int getNumber() {} public void setNumber(String number) {} } so in OGNL 2.6.x if we try to set "obj.number" to 10, it will fail because it uses PropertyDescriptor(s) to find "number" and it fails to do so. In OGNL 2.7.x it succeeds because it finds the setter method, without using PropertyDescriptor. OGNL 2.7 can compile expressions into java code which gives a very nice performance boost, so I am big +1 for upgrading. I am trying to figure if the changes in 2.6 mate it into 2.7 or not. musachy On Sat, Jun 27, 2009 at 8:09 PM, Musachy Barroso<musa...@gmail.com> wrote: > hehe..I will be testing with that version, so far 3 tests break on > xwork, they don't seem like a big deal and I like the new behavior > better (I will give more details later). I still need to run the > struts tests. > > musachy > > On Sat, Jun 27, 2009 at 7:35 PM, Dave Newton<newton.d...@yahoo.com> wrote: >> Musachy Barroso wrote: >>> >>> it is here: http://mirrors.ibiblio.org/pub/mirrors/maven2/ognl/ognl/2.7.2/ >>> >>> why aren't we using that version? >> >> 'Cuz nobody could find it ;) >> >> Dave >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org >> For additional commands, e-mail: dev-h...@struts.apache.org >> >> > > > > -- > "Hey you! Would you help me to carry the stone?" Pink Floyd > -- "Hey you! Would you help me to carry the stone?" Pink Floyd --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org For additional commands, e-mail: dev-h...@struts.apache.org