我正在尝试使用spring MVC和Apache camel进行REST服务编排。基本的想法是,如果有人将网址称为http://localhost:8080/context/associateVerify?ssn=value1¶m2=value2,则应将网络服务称为http://localhost:8080/AssociateVerify/ssn?ssn=value,如果有人拨打http://localhost:8080/context/store?storeNum=value1,则应将其称为http://localhost:8080/StoreInfo/store?storeNum=value&等等。我尝试在网上搜索,但不是一个可以帮助我入手的详细示例。
答案 0 :(得分:0)
UrlRewriteFilter可能对您有所帮助。它的过滤器相当于apache https的mod_rewrite模块。您可以在http://tuckey.org/urlrewrite/和http://nematodes.org/martin/2010/02/04/301-permanent-redirect-with-tomcat-howto/
找到更多信息