摘要:
开始吧 1、 准备 403 错误页面 <div class="layui-body"> <!-- 内容主体区域 --> <div style="padding: 15px;"> <h1>非常抱歉!您没有访问这个功能的权限!(回家照照镜子)</h1> <h2>${message }</h2> </di 阅读全文
摘要:
开始吧 1、 通过 HttpSecurity 对象设置资源的角色要求 这回我把整个类拿过来,直接看注释就好了。很详细了! 测试目的:访问被拒绝后看到 403 错误页面! /** * 继承WebSecurityConfigurerAdapter这个类。这个类中有Security的一些默认配置。 * 如 阅读全文
摘要:
开始吧 1、 通过调用 HttpSecurity 对象的一系列方法设置注销功能。 最后四行代码: //重写configure方法进行配置 @Override protected void configure(HttpSecurity httpSecurity) throws Exception { 阅读全文
摘要:
开始吧 1、 给 index.jsp 设置表单 div外围添加form表单标签,input标签改name属性名,button按钮改type类型为submit。 <p>${SPRING_SECURITY_LAST_EXCEPTION.message}</p> <form action="${pageC 阅读全文
摘要:
开始吧 1、 指定登录跳转的页面 //重写configure方法进行配置 @Override protected void configure(HttpSecurity httpSecurity) throws Exception { httpSecurity .authorizeRequests( 阅读全文
摘要:
开始吧 1、 在自己的配置类中重写父类的 configure(HttpSecuritysecurity)方法。 SpringSecurityConfig //重写configure方法进行配置 @Override protected void configure(HttpSecurity httpS 阅读全文