SES url's with Railo/tomcat that have dynamic subfolders

筅森魡賤 提交于 2019-12-25 18:58:52

问题


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?


回答1:


You can run Railo on Jetty instead which has more sophisticated URL pattern support I believe (since this is a Tomcat restriction, not a Railo issue per se).



来源:https://stackoverflow.com/questions/12204536/ses-urls-with-railo-tomcat-that-have-dynamic-subfolders

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!