在我的路线中:
GET /rest/trafficstats?{usr}&{pwd} Controller.trafficstats
在我的控制器中:
public static void trafficstats(String usr, String pwd) { ..
如果我通过这个你就行不通:
http://localhost:9000/rest/trafficstats?usr=usr2&pwd=pwd
返回:404
为什么?
这笔交易与第二个参数(pwd)有关。我不应该使用“&”吗?