How to get the request parameters using get in Spark Java framework?

╄→尐↘猪︶ㄣ 提交于 2019-12-04 16:48:56

问题


I'm new to sparkjava. I want to read my request params using spark java but I'm not able to find the correct syntax. please help me out. Below is my route method and the client call to it:

my client request url: /smartapp/getDataViewModelConfig?collId=123'

Route Method:

get("smartapp/getDataViewModelConfig/:id", "application/json", (request, response)

        -> {
  String id = request.params(":id");
}

The 'id' field is returning null here. Any suggestions as to what went wrong here?


回答1:


If you have to work with an URL like /smartapp/getDataViewModelConfig?collId=123 you have to deal with query parameters in your implementation, like the following:

get("smartapp/getDataViewModelConfig", "application/json", (request, response)->{
  String id = request.queryParams("collId");
  return "HI " + id;
}



回答2:


If you have an URL like : http://localhost:4567/smartapp/getDataViewModelConfig/456 use the following code :

get("/smartapp/getDataViewModelConfig/:id","application/json", ((request, response) -> {
                response.type("application/json")
                return  request.params(":id");
            }), gson::toJson);


来源:https://stackoverflow.com/questions/29127490/how-to-get-the-request-parameters-using-get-in-spark-java-framework

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!