Latest Posts

Spring Path Variables With Period


Problem Spring MVC controller with @PathVariable doesnt recognize values after period.  For example if you have a controller like: @RequestMapping(value = “/{someParam}”, method = { RequestMethod.GET}) You may notice when you hit a url that includes a period, like: http://yoursite/someParamValue.Contains.A.Period That the actual value spring passes into your controller is “someParamValue” and it truncates the…

Read More