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

后端 未结 2 895
暗喜
暗喜 2021-02-12 11:04

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 clien

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-12 11:24

    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);
    

提交回复
热议问题