上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 50 下一页
  2022年9月2日
摘要: json字符串忽略null,忽略字段,首字母大写等gson,jackson,fastJson实现demo package com.example.core.mydemo.json.vo; import com.alibaba.fastjson.annotation.JSONField; import 阅读全文
posted @ 2022-09-02 11:11 oktokeep 阅读(945) 评论(4) 推荐(0) 编辑
  2022年8月30日
摘要: import logging import os ''' 格式符 含义 %(levername)s 日志级别名称 %(pathname)s 当前执行程序的路径(即脚本所在的位置) %(filename)s 执行脚本程序名 %(lineno)d 日志当前的行号 %(asctime)s 打印日志的时间 阅读全文
posted @ 2022-08-30 16:32 oktokeep 阅读(488) 评论(1) 推荐(0) 编辑
摘要: Java8 多线程及并行计算demo #接口 public interface RemoteLoader { String load(); default void delay() { try { Thread.sleep(1000L); } catch (InterruptedException 阅读全文
posted @ 2022-08-30 15:13 oktokeep 阅读(479) 评论(2) 推荐(0) 编辑
摘要: redis zset 延迟合并任务处理 @Autowired public RedisTemplate redisTemplate; ##1.发送端:在接口中收集任务ID,累计时间段之后,合并处理。 ##redis zset 主键,任务ID(不重复),时间戳 String key = "任务分组名称 阅读全文
posted @ 2022-08-30 15:03 oktokeep 阅读(142) 评论(0) 推荐(0) 编辑
摘要: #sqlmapper <resultMap id="BaseResultMap" type="com.LogEntity" > <result column="ID" property="ID" /> <result column="content_md5" property="contentMd5 阅读全文
posted @ 2022-08-30 14:33 oktokeep 阅读(971) 评论(0) 推荐(0) 编辑
摘要: mybatis执行insert语句后,返回当前插入数据主键的方法 keyProperty区分大小写 #这样查询没有返回主键值 <insert id="addLog" useGeneratedKeys="true" keyProperty="id" parameterType="com.LogEnti 阅读全文
posted @ 2022-08-30 14:26 oktokeep 阅读(69) 评论(0) 推荐(0) 编辑
  2022年8月23日
摘要: # aspose word模板文件生成pdf package com.example.core.mydemo; import com.alibaba.fastjson.JSON; import com.aspose.words.*; import org.slf4j.Logger; import o 阅读全文
posted @ 2022-08-23 13:56 oktokeep 阅读(322) 评论(0) 推荐(0) 编辑
摘要: # CountDownLatch demo演示数据分片多线程处理 package com.example.core.mydemo; import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; import java 阅读全文
posted @ 2022-08-23 13:52 oktokeep 阅读(116) 评论(0) 推荐(0) 编辑
摘要: # CountDownLatch demo演示裁判和选手赛跑 package com.example.core.mydemo; import java.util.concurrent.CountDownLatch; import java.util.concurrent.ExecutorServic 阅读全文
posted @ 2022-08-23 13:52 oktokeep 阅读(25) 评论(0) 推荐(0) 编辑
  2022年8月22日
摘要: # Python3 dict和str互转 import ast str_of_dict = "{'key1': 'key1value111', 'key2': 'key2value222'}" newdict = ast.literal_eval(str_of_dict) print(type(st 阅读全文
posted @ 2022-08-22 10:50 oktokeep 阅读(225) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 50 下一页