在我使用Spring Framework开发的REST API中,我有一个Rest端点接收Two Double值,Rest Call是:http://localhost:8080/restapp/events/nearby/12.910967/77.599570
这里,第一个参数(双数据类型),即12.910967我能正确接收,即12.910967.但是第二个参数,即77.599570,我只能在小数点截断后得到77.0的数据.
我的REST后端是:
@RequestMapping(value = "/nearby/{lat}/{lngi}",method = RequestMethod.GET,produces = "application/json")
public List
如何在REST api中接收双数据类型?
最佳答案
更新您的代码如下 – 注意{lngi:.它指定一个正则表达式,意味着某些字符将出现在帖子中.
原文链接:https://www.f2er.com/spring/431841.html@RequestMapping(value = "/nearby/{lat}/{lngi:.+}",HttpServletResponse response) throws IOException