I've a question
Is there difference @RequestMapping(value="/abc") and @RequestMapping(value="abc") ??
In my spring project, they are running a little difference. Actually not a little.
could you tell me the difference?
I've a question
Is there difference @RequestMapping(value="/abc") and @RequestMapping(value="abc") ??
In my spring project, they are running a little difference. Actually not a little.
could you tell me the difference?
I'm not an expert, but i haven't seen any difference when changed my controllers code. But it's a better practice to write @RequestMapping("/this")
instead of @RequestMapping("this")
, because it's better seen. I hope it helps.