Facing the issue into the endpoint fetching
Below is the case while I call the api get the response.
http://localhost:28080/restServices/apps/1762/users/USERNAME/?password=PASSWORD
But when ever I set following data it's not working could any body help me out into this issues.
http://localhost:28080/restServices/apps/1762/users/USERNAME/?password=PASSWORD&data={}
@RequestMapping(value = "/apps/{appId_}/users/{username_}", method = RequestMethod.GET)
@ResponseBody
@Transactional
public UserResponseDTO getUserAndToken(@PathVariable Long appId_, @PathVariable String username_, @RequestParam("password") String password_, @RequestParam("data") String datas) throws Exception {
//do stuff
}
EDIT
This problem with any edit it's works into the Tomcat Version 7.0.63
While another version 7.0.73, 8.0.x +
not working.