随笔分类 -  2020之前

摘要:Mybatis缓存简单使用 MyBatis中的缓存分为一级缓存和二级缓存,一级缓存又被称为 SqlSession 级别的缓存,二级缓存又被称为表级缓存。 一级缓存 一级缓存是 SqlSession级别 的缓存。在操作数据库时需要构造 sqlSession 对象,在对象中有一个(内存区域)数据结构(H 阅读全文
posted @ 2021-06-08 16:32 君子坐而论道 阅读(248) 评论(1) 推荐(0) 编辑
摘要:response.setHeader("Content-Disposition", String.format("inline; filename=\"%s\"", StringUtil.toEncodedString(fileDescriptionDTO.getName().getBytes(), 阅读全文
posted @ 2021-06-03 18:07 君子坐而论道 阅读(727) 评论(0) 推荐(0) 编辑
摘要:Markdown学习 标题 三级标题 四级标题 字体 Hello World! Hello World! Hello World! Hello World! 引用 走向人生巅峰 分割线 图片 超链接 点击跳转到百度 列表 有序列表 A B C 无序列表(-) A B C 表格 名字 性别 生日 张三 阅读全文
posted @ 2021-04-26 10:31 君子坐而论道 阅读(118) 评论(0) 推荐(1) 编辑
摘要:RabbitAdmin 该类封装了对 RabbitMQ 的管理操作 @Bean public RabbitAdmin rabbitAdmin(ConnectionFactory connectionFactory){ return new RabbitAdmin(connectionFactory) 阅读全文
posted @ 2020-07-13 17:39 君子坐而论道 阅读(1979) 评论(0) 推荐(0) 编辑
摘要:svn服务器端下载(VisualSVN) 安装包,选择windows版的VisualSVN-Server https://www.visualsvn.com/downloads/ svn客户端下载(TortoiseSVN) 安装包:https://www.visualsvn.com/visualsv 阅读全文
posted @ 2020-06-08 14:37 君子坐而论道 阅读(1646) 评论(0) 推荐(0) 编辑
摘要:自己写的案例在github上 可以下载下来看 https://github.com/171437912/shiro_ssm_Demo.git freemarker集成shiro标签 最近在做权限控制的时候用到了shiro,可惜一窍不通,学了一段时间之后,在freemarker装饰器中集成shiro标 阅读全文
posted @ 2017-10-24 14:09 君子坐而论道 阅读(3670) 评论(0) 推荐(0) 编辑
摘要:Linux系统MySQL开启远程连接 远程连接服务器上的MySQL。 Navicat软件连接数据库报错:2003-can't connect to MYSQL serve 工具/原料 crt、navicat、Linux系统、MySQL。 方法/步骤 远程连接上Linux系统,确保Linux系统已经安 阅读全文
posted @ 2017-09-18 19:10 君子坐而论道 阅读(5496) 评论(0) 推荐(0) 编辑
摘要:springMVC返回的json日期为Long的格式化 标签: spring mvcjson格式化mybatis时间 2015-10-30 14:48 1467人阅读 评论(0) 收藏 举报 分类: spring(4) springMVC+myBatis查询数据,得到date类型数据,返回json日 阅读全文
posted @ 2017-09-07 18:01 君子坐而论道 阅读(1303) 评论(0) 推荐(0) 编辑
摘要:1.pom文件先下载依赖 <!--自动生成set get方法--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> 2.安装 lombok 插件 在 fil 阅读全文
posted @ 2017-08-18 10:48 君子坐而论道 阅读(8138) 评论(0) 推荐(1) 编辑
摘要:springmvc的文件上传和下载案例 1.项目结构 2.pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sche 阅读全文
posted @ 2017-07-27 13:12 君子坐而论道 阅读(2387) 评论(0) 推荐(1) 编辑