Hello all

in my application i have the request mapping as like below
@RequestMapping(value = "/emp/update/{empid}/{initial}/{ename}", method = RequestMethod.POST)

if i give the 3 values(empid,initial and ename) i am able to update the details
i would like to give like this /emp/update/10/""/name (initial as empty string)

will it allow? what to changes i need to do if i would like to allow empty strings in the request parameters?

pls help me
Thanks in Advance