摘要: 用到的技术 freeMarker+java生成word,jacob实现word转换成pdf,itext对pdf文档进行操作 生成word 1.定义模板 在word文件中定好模板 然后将模板另存为xml格式的,保存好修改文件格式为ftl,在需要遍历的地方给文件添加 <#list list as lis 阅读全文
posted @ 2020-03-30 12:17 求知若渴的蜗牛 阅读(1304) 评论(0) 推荐(0)
摘要: 一、下载 地址:https://dev.mysql.com/downloads/mysql/当前最新是8.0版本,我选择上一个最新的mysql-5.7.24-winx64.zip 二、安装 1.MySQL安装文件分两种 .msi和.zip ,.msi需要安装 2.zip格式是自己解压,解压缩之后其实 阅读全文
posted @ 2020-02-15 13:40 求知若渴的蜗牛 阅读(405) 评论(0) 推荐(0)
摘要: 第一步在本地创建一个文件夹用于存储项目 mall 第二部右键文件夹mall 进入git控制面板 执行git init命令 将文件夹创建成仓库 第三部给mall文件中添加内容 第四部使用git add . git commit -m 将添加的内容添加到本地仓库 第五步在github创建仓库 将本地仓库 阅读全文
posted @ 2020-01-13 16:07 求知若渴的蜗牛 阅读(217) 评论(0) 推荐(0)
摘要: 第一步添加依赖 <dependency> <groupId>cn.afterturn</groupId> <artifactId>easypoi-spring-boot-starter</artifactId> <version>4.1.3</version> </dependency> <!-- 阅读全文
posted @ 2020-01-11 17:46 求知若渴的蜗牛 阅读(6601) 评论(4) 推荐(0)
摘要: 转载 https://blog.csdn.net/leoxyk/article/details/79800020 阅读全文
posted @ 2020-01-01 13:57 求知若渴的蜗牛 阅读(226) 评论(0) 推荐(0)
摘要: 都说Vue2简单上手容易,的确,看了官方文档确实觉得上手很快,除了ES6语法和webpack的配置让你感到陌生,重要的是思路的变换,以前用jq随便拿全局变量和修改dom的锤子不能用了,vue只用关心数据本身,不用再频繁繁琐的操作dom,注册事件、监听事件、取消事件。。。。(确实很烦)。vue的官方文 阅读全文
posted @ 2019-12-31 15:28 求知若渴的蜗牛 阅读(184) 评论(0) 推荐(0)
摘要: 第一步添加依赖 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.p 阅读全文
posted @ 2019-12-23 16:21 求知若渴的蜗牛 阅读(577) 评论(0) 推荐(0)
摘要: 第一步添加mail的依赖 <!--引入mail的依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency 阅读全文
posted @ 2019-12-19 18:04 求知若渴的蜗牛 阅读(367) 评论(1) 推荐(0)
摘要: 第一步编写上传的前段页面 <div> <button type="button" class="btn btn-primary" ng-click="openAddModal()" data-toggle="modal" data-target="#documentOprModal" style=" 阅读全文
posted @ 2019-12-19 18:04 求知若渴的蜗牛 阅读(714) 评论(0) 推荐(0)
摘要: Quartz是一个完全由Java编写的开源任务调度的框架,通过触发器设置作业定时运行规则,控制作业的运行时间。其中quartz集群通过故障切换和负载平衡的功能,能给调度器带来高可用性和伸缩性。主要用来执行定时任务,如:定时发送信息、定时生成报表等等。 创建一个任务类 package www.it.c 阅读全文
posted @ 2019-12-19 18:04 求知若渴的蜗牛 阅读(518) 评论(1) 推荐(0)