上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 24 下一页
摘要: 前言:如果遇到quartz加载两次任务,可以参考是tomcat加载了两次你的项目, 导致quartz执行两次 <!--配置context后,项目不要放在webapps目录下,否则会加载两次 --> <Host name="localhost" appBase="webapps" unpackWARs 阅读全文
posted @ 2020-05-14 21:24 748573200000 阅读(992) 评论(0) 推荐(0) 编辑
摘要: 使用easyui窗口:以下是父页面 <html> <head> <title>定时调度管理</title> </head> <body width="100%" height="100%"> <table id="ListTable" title="定时调度管理" style="width: 100 阅读全文
posted @ 2020-05-14 14:34 748573200000 阅读(4061) 评论(0) 推荐(0) 编辑
摘要: 说到分组和去重大家率先想到的肯定是group by和distinct, 1.distinct对去重数据是要根据所有要查询的字段去重,不能对查询结果部分去重。 例如: select name ,age ,sex from user where sex = "男"; 要是只根据name和age去重,这里 阅读全文
posted @ 2020-05-02 20:24 748573200000 阅读(10586) 评论(0) 推荐(0) 编辑
摘要: import org.apache.commons.codec.binary.Hex; import org.bouncycastle.jce.provider.BouncyCastleProvider; import org.bouncycastle.pqc.math.linearalgebra. 阅读全文
posted @ 2020-01-19 16:02 748573200000 阅读(18523) 评论(2) 推荐(4) 编辑
摘要: 基于jdk8 1.首先我们看new ArrayList中 public ArrayList() { this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA; } private static final Object[] DEFAULTCAPACIT 阅读全文
posted @ 2019-12-12 08:52 748573200000 阅读(518) 评论(4) 推荐(0) 编辑
摘要: 参考:https://yq.aliyun.com/articles/632079 首先看配置文件: 注解类 动态数据源 数据源切面 启动类加上 调用其他数据库成功 阅读全文
posted @ 2019-11-21 14:10 748573200000 阅读(1626) 评论(0) 推荐(0) 编辑
摘要: 昨天在码云找了个开源后台项目https://gitee.com/shuzheng/zheng,各种修改后终于跑起来了, 运行没多久就提示内存不足,安装目录配置虚拟机最大可用内存为512M idea弹窗提示内存不足,当前512m,于是弹窗上直接修改为1024m,注意:不是在安装目录配置文件修改。 修改 阅读全文
posted @ 2019-11-21 08:58 748573200000 阅读(6521) 评论(2) 推荐(0) 编辑
摘要: <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>3.14</version> </dependency> 通用读写excel工具类 import org.apache 阅读全文
posted @ 2019-11-20 09:44 748573200000 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 历史表(popularity_ranking)数据中只存了用户手机号,业务需求中需要新增用户昵称字段, 这里我们用户表和popularity_ranking表在不同数据库中,有两种方法:1.编写后台服务调用不同数据库, 进行sql更新;2.导出csv文件修改sql。因为项目并没有采用多数据源配置,而 阅读全文
posted @ 2019-11-18 10:44 748573200000 阅读(832) 评论(0) 推荐(0) 编辑
摘要: <!-- https://mvnrepository.com/artifact/com.google.guava/guava --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <ve 阅读全文
posted @ 2019-11-12 14:26 748573200000 阅读(5571) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 24 下一页