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

后端 未结 2 890
暗喜
暗喜 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 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;
    }
    

提交回复
热议问题