RequestMapping直接返回字符串时,是被默认当作路径使用。
带@ResponseBody注解除外。
@RequestMapping(value = { "/", "/hello**" }, method = RequestMethod.GET)
public String welcome() {
return "helloworld";
}
RequestMapping直接返回字符串时,是被默认当作路径使用。
带@ResponseBody注解除外。
@RequestMapping(value = { "/", "/hello**" }, method = RequestMethod.GET)
public String welcome() {
return "helloworld";
}