当前位置: 代码迷 >> Java Web开发 >> JSP 跳转地址拼接有关问题,
  详细解决方案

JSP 跳转地址拼接有关问题,

热度:7541   发布时间:2016-04-10 22:56:34.0
JSP 跳转地址拼接问题,在线等!!!!!
@RequestMapping(value="/africa-{category}-{country}-{index}.html")
public String afInfoList(HttpServletRequest request,
@PathVariable("category") String category,
@PathVariable("country") String country,
@PathVariable("index") int index) throws Exception 


对应的链接地址为:http://localhost:8080/project/africa-aa-un-1.html


请问如果链接地址需要修改为:http://localhost:8080/project/africa.html?t=aa.un.1

对应的代码如何修改
------解决方案--------------------
/africa.html?t={category}.{country}.{index}

这样应该可以吧。
  相关解决方案