Hi,
Is there any limitation of using URI that ends with dots?
For example:
www.mysite.com/id/10.10.3
For some reason it seems like that the following controller cuts the last number:
@RequestMapping(value ="/{uid}" , method=RequestMethod.GET)
public ModelAndView getByUID(@PathVariable String uid)
Meaning uid in this example will be "10.10"
On the other end the following works ok:
www.mysite.com/id/10.10.3/
Thanks,
Guy
