部署到Tomcat中启动。
问题1:在浏览器中输入地址:
http://localhost:8080/SpringMVC1/person/test,显示错误“The server encountered an internal error () that prevented it from fulfilling this request.”,请问各位高手,难道不能直接访问到该JSP吗?
然后新建一个Java类如下:
@Controller
@RequestMapping("/personmg")
public class PersonService{
@RequestMapping("/testjsp")
public ModelAndView testpage()
{
//return "redirect:/person/test";
return new ModelAndView("/person/test");
//return new ModelAndView(new RedirectView("/person/test"));
}
}
重新部署后发现
问题2:
使用return new ModelAndView("/person/test");语句时在index.html中点Submit按钮能正确显示test.jsp文件中得内容。如果使用return new ModelAndView(new RedirectView("/person/test"));或return "redirect:/person/test";语句则点Submit按钮后系统提示“The requested resource (/person/test) is not available.”。