Java – First time use of Tomcat and the Stripes framework

javastripestomcatxampp

I recently decided to try some java web development, so I installed xampp, the tomcat add-on, and java. I have looked at some of the JSP page examples that came with it, so I know that tomcat is at least working. However when I threw the stripes folder into the same examples directory and tried to access the files I received the following error.

org.apache.jasper.JasperException: The
absolute uri:
http://stripes.sourceforge.net/stripes.tld
cannot be resolved in either web.xml
or the jar files deployed with this
application

Now, I am a complete beginner when it comes to using tomcat or jsp pages in general. I may have missed some trivially easy step. I have searched the web for a few hours and I haven't found a very good tutorial on how to set up and start using the stripes framework. So let me know if you have any input or links to help me resolve this issue and get started coding.

Best Answer

Take a look at Quick Start Guide for Stripes. There is also a sample app included as part of Stripes download.

Note that you have to deploy that sample app as web application in Tomcat (e.g. copy war file to Tomcat's webapps folder), you can't just "throw stripes folder" into 'examples'.