« Return to Thread: OGNL 2.7

Re: OGNL 2.7

by Nuttquisterty :: Rate this Message:

Reply to Author | View in Thread

I just did a straight swap of the old for the new.  After a quick run through everything seems fine.  Hard to judge any speed improvements running it just on my own machine with only me using it, as it loads pretty much instantly already.  The only difference I've noticed so far are some of the OGNL exception messages have changed slightly.  Only niggle is that the new version is under a different name in the Maven central repo than the one XWork used (ognl/ognl rather than opensymphony/ognl).  Will try putting it through its paces on a semi-live test early next week.

-------

Exclude the old version from WebWork
[code]
<exclusions>
  <exclusion>
    <groupId>javax.mail</groupId>
    <artifactId>mail</artifactId>
  </exclusion>
  <exclusion>
    <groupId>opensymphony</groupId>
    <artifactId>ognl</artifactId>
  </exclusion>
</exclusions>
[/code]

Include the new
[code]
<dependency>
  <groupId>ognl</groupId>
  <artifactId>ognl</artifactId>
  <version>2.7</version>
</dependency>
[/code]
---------------------------------------------------------------------
Posted via Jive Forums
http://forums.opensymphony.com/thread.jspa?threadID=94470&messageID=162568#162568

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...

 « Return to Thread: OGNL 2.7