我正在尝试使用 spring MVC 和 Apache camel 进行 REST 服务编排。基本思想是,如果有人将 url 称为http://localhost:8080/context/associateVerify?ssn=value1¶m2=value2,它应该将 webservice 称为http://localhost:8080/AssociateVerify/ssn?ssn=value,同样,如果有人调用http://localhost:8080/context/store?storeNum=value1它应该调用http://localhost:8080/StoreInfo/store?storeNum=value等等。我尝试在网上搜索,但找不到可以帮助我开始的详细示例。
问问题
598 次
1 回答
0
UrlRewriteFilter 可能会对您有所帮助。它是一个过滤器,相当于 apache https 的 mod_rewrite 模块。您可以在http://tukey.org/urlrewrite/和http://nematodes.org/martin/2010/02/04/301-permanent-redirect-with-tomcat-howto/找到更多信息
于 2015-05-15T07:38:35.853 回答