Well this is indeed a blast from the past!

You seem to be missing jdom.jar from your classpath as well.  There
will be a version in your maverick distribution, or you can find the
latest version here:  http://www.jdom.org/

Are you actually contemplating Maverick or just doing research?
Maverick is pretty dated, especially in an ajax-driven world.
Post-Maverick I ended up developing http://tagonist.tigris.org/, which
does most of what I needed from Maverick but in 500 lines of code...
and now I use http://code.google.com/p/htmleasy/ + Cambridge for basic
html rendering, although that tends to be fairly simple given that
most data is rendered by javascript/ajax.

Jeff

On Mon, Jan 30, 2012 at 11:39 AM, Steven McGrew <s...@urbancode.com> wrote:
> Up for a blast from the past?
>
> I am trying to run a very basic web app using Maverick mostly to learn about
> the MVC framework. However, I am currently stymied by an error that I keep
> getting. The dispatcher refuses to load.
>
> This is the error: java.lang.ClassNotFoundException: org.jdom.JDOMException
> Full stack trace: http://pastebin.com/Sv4bs4r1
> I get this error on both Tomcat 6 and Tomcat 4.1.30, with both JDom 1.0 and
> the latest version.
>
> I have maverick.jar in my WEB-INF/lib folder and I have the library added to
> my build path. Here are snippets from my maverick.xml and web.xml,
> respectively:
>
>  <views>
>  <view id="MyView" path="home.jsp">
>  </view>
>  </views>
>
>  <commands>
>  <command name="cmd">
>  <controller class="controllers.MyController"/>
>   <view name="success" path="success.jsp" />
>   <view name="error" path="failure.jsp" />
>  </command>
>
> ----
>
> <servlet>
>     <display-name>Maverick Dispatcher</display-name>
>     <servlet-name>dispatcher</servlet-name>
>     <servlet-class>org.infohazard.maverick.Dispatcher</servlet-class>
>     <load-on-startup>2</load-on-startup>
>   </servlet>
>   <servlet-mapping>
>     <servlet-name>dispatcher</servlet-name>
>     <url-pattern>*.m</url-pattern>
>     </servlet-mapping>
>
> If anyone can help I'd greatly appreciate it.
>
>
>
> ------------------------------------------------------------------------------
> Try before you buy = See our experts in action!
> The most comprehensive online learning library for Microsoft developers
> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
> Metro Style Apps, more. Free future releases when you subscribe now!
> http://p.sf.net/sfu/learndevnow-dev2
> _______________________________________________
> %(real_name)s mailing list
> %(real_name)s@%(host_name)s
> %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s
> Archives are available at
> http://www.mail-archive.com/mav-user%40lists.sourceforge.net/

------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
_______________________________________________
%(real_name)s mailing list
%(real_name)s@%(host_name)s
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s
Archives are available at 
http://www.mail-archive.com/mav-user%40lists.sourceforge.net/

Reply via email to