上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 在ssm框架中因为要记录使用者的访问信息,所以要使用日志系统; 首先定义一个类,用来保存访问的信息; public class SysLog { private Integer id; private Date visitTime;//访问时间 private String username; pr 阅读全文
posted @ 2020-04-30 00:24 刀锋意志1 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 场景是用户表,角色表,权限表做权限管理; users表 role表 permission表 中间表users-role 中间表role-permission 查询用户没有的角色 在controller中 @RequestMapping("/findUserByIdAndAllRole.do") pu 阅读全文
posted @ 2020-04-27 21:35 刀锋意志1 阅读(2231) 评论(0) 推荐(0) 编辑
摘要: 慕课网有shiro的教程 阅读全文
posted @ 2020-04-06 11:11 刀锋意志1 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 首先要在web.xml中配置shiro的filter <filter> <filter-name>shiroFilter</filter-name> <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter- 阅读全文
posted @ 2020-04-06 11:07 刀锋意志1 阅读(152) 评论(0) 推荐(0) 编辑
摘要: public class roleOrFilter extends AuthorizationFilter { /** * * @param servletRequest * @param servletResponse * @param o 传过来的权限或者角色 * @return * @thro 阅读全文
posted @ 2020-04-04 00:15 刀锋意志1 阅读(828) 评论(0) 推荐(0) 编辑
摘要: 当我们使用ssm框架整合进行项目开发,使用Shiro作为安全验证管理,在web.xml中配置Shiro过滤器后 启动Tomcat会报错: Error during artifact deployment. See server log for details. <bean id="shiroFilt 阅读全文
posted @ 2020-04-02 22:00 刀锋意志1 阅读(618) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2020-03-18 20:42 刀锋意志1 阅读(119) 评论(0) 推荐(0) 编辑
摘要: # spring mvc绑定参数之类型转换有三种方式: ## 1.实体类中加日期格式化注解 @DateTimeFormat(pattern="yyyy-MM-dd HH:mm") private Date creationTime; ## 2.属性编辑器 spring3.1之前 在Controlle 阅读全文
posted @ 2020-03-18 20:38 刀锋意志1 阅读(163) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2020-02-10 00:03 刀锋意志1 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 1 public class Test { 2 public static void main(String[] args) throws IOException { 3 // 1.读取配置文件 4 InputStream in = Resources.getResourceAsStream("Sq 阅读全文
posted @ 2020-02-03 13:43 刀锋意志1 阅读(146) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页