I have following code to get double with 5 digit decimal but not getting
@RequestMapping(value = "/double1/{double}", method = RequestMethod.GET)
@ResponseBody
public double getDouble1(@PathVariable("double")double dou){
System.out.println(dou);
return dou;
}
Following is input output
http://localhost:8080/svc/double1/4569999999999991.922222222333 ==> 4569999999999991
http://localhost:8080/svc/double1/4569999999999991.1234567 ==> 4569999999999991