Re: servlet url-pattern and subdirectories problem

2007-05-22 Thread Georg Sauer-Limbach
[EMAIL PROTECTED] wrote: mainapp *.do mainapp /subapp/* This allows me to route ./mainapp/subapp/myaction.do correctly, but I can't access ./mainapp/subapp/images/xyz.gif. What I'd really like to do > is have the last url-pattern to be "/subap

servlet url-pattern and subdirectories problem

2007-05-22 Thread dhay
Hi, We're using Spring-MVC and we're trying to set up 2 "apps" in a single web app... Our main app is under .../mainapp url, and then we have another series of pages that can be accessed via ./mainapp/subapp. The subapp files are found in a "subapp" subdirectory in the mainapp webapp. Howeve