我正在尝试使用 Java 开发一个简单的应用程序,它调用一个返回 xml 的 web 服务 restful,然后我需要将结果提供给一个 jsp 页面。我正在考虑使用 CXF,但不清楚的是,restful 服务可以有不同的 url,参数如下:
http://ws-host.com/rest/products?BRAND=020&LOCALE=en_gb?product_code=600200
http://ws-host.com/rest/products?BRAND=020&LOCALE=en_gb&VEHICLE_BRAND=test
或者
http://ws-host.com/rest/dealers?BRAND=020&LOCALCE=en_gb&SEARCH_TERM=Test
我怎样才能做到这一点?我有点困惑。谢谢