I've had success getting SES urls to work such as http://mydomain.com/index.cfm/foo/bar
using <url-pattern>/index.cfm/*</url-pattern>
, however this only works for the root and if the folders are known. If for example i have a sub folder with a child application that employs the same trick http://mydomain.com/products/index.cfm/foo/bar
i can also get it to work by using <url-pattern>/products/index.cfm/*</url-pattern>
, however, if there are folders between /products/
and index.cfm/foo/bar
with dynamic names i would have to make a url pattern for each name because <url-pattern>/products/*/index.cfm/*</url-pattern>
won't work.
Any ideas other than re-building the application to not use a dynamic folder structure or having to populate this web.xml dynamically each time a folder is added/removed/changed?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…