I got burned by this too, sadly Jetty didn’t provide any output during
failure so it took much longer to figure out than it should have.

A google for “displaytag NestedNullException” turned up this JIRA issue for
DisplayTag http://jira.codehaus.org/browse/DISPL-178.  Looks like DisplayTag
requires commons-beanutils 1.7.0.  When I look at the WEB-INF/lib directory
of the exploded WAR in my web module (I’m using Struts multi module), I only
see commons-beanutils-1.6.x.  After I added an explicit dependency in my
web/pom.xml to commons-beanutils 1.7.0 everything worked well.

<dependency>
  <groupId>commons-beanutils</groupId>
  <artifactId>commons-beanutils</artifactId>
  <version>${commons.beanutils.version}</version>
</dependency>

-- david


Abdullah Jibaly-2 wrote:
> 
> Hi all,
> 
> Has anyone been able to get Displaytag 1.1 to work? After building the jar
> file, I get a
> NestedNullException in the JSP when using the most basic example. If I
> change it to the 1.0 jar
> everything works fine. Any ideas? I am running on Tomcat 5.5.7 / Servlet
> 2.4.
> 
> Thanks,
> Abdullah
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/-appfuse-user--Displaytag-1.1-tp1188436s2369p14599116.html
Sent from the AppFuse - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to