2.问:向访问到后台controller的处理方法sayHello()代码的URL地址是多少?@Controller
@RequestMapping("/first")
public class FirstController{
@RequestMapping("/hello")
public String sayHello(Model model) throws Exception {
model.addAttribute("msg", "欢迎来到我的Spring MVC世界");... ...