That sounds to me like you are missing the fundamentals of java web development. Maybe you should read the servlet chapter of the Sun JEE tutorial, especially the bit about web modules:
Sun JEE Tutorial: The Web Tier
Basically you neet to create a WAR archive, where the stripes jar lies in the directory WEB-INF/lib
. To wrap the WAR, you can either use IDE methods (e.g. in eclipse) or specilized build tools like Maven (here is an old but still valid Article about web development with maven, there is also a good online maven book from Sonatype, but I wouldn't know where to point you at, there's not really a web tutorial in there).