2.登录页面提交表单到/a/login时,又能被shirio过滤器捕获,完成登录认证
3.而对spring controller来说,登录成功、登录失败有专门的处理方法,
5.spring mvc 控制器 怎么写确保你的xxx-servlet.xml定义了
定义随便叫什么的普通类:
public class XXXController {
}在 XXXController 上添加 Controller 和 RequestMapping Annotation:
@Controller
@RequestMapping("Controller")
public class XXXController {
}在 XXXController 上定义任意名称的公共方法 。
@Controller
@RequestMapping("Controller")
public class XXXController {
public String tt() {
return "path-to-jsp";
}
}在该方法上加上 RequestMapping Annotation:
@Controller
@RequestMapping("Controller")
public class XXXController {
@RequestMapping("tt")
public String tt(Model model) {
model.addAttribute("property", "value");
// 返回 path-to-jsp 指定的 jsp 页面
return "path-to-jsp";
}
}开始调试 。
文章插图