摘要:
int(2)和int(11)只有在用了Zerofill属性才不一样 整型字段有个ZEROFILL属性,在数字长度不够的数据前面填充0,以达到设定的长度。 应用一: 可以大量用于所谓“流水号”的生成上。比如,想要生成的流水号。可以直接拼接 CREATE TABLE `test` ( `id` int( 阅读全文
摘要:
-- 存储过程存在则删除 DROP PROCEDURE IF EXISTS update_utime_sql; -- 创建存储过程 CREATE PROCEDURE update_utime_sql(tableSchema VARCHAR(255)) -- 开始 BEGIN -- 定义游标变量 DE 阅读全文
摘要:
1 、注解中配置对应服务的URL,需要修改代码@Reference(check = false, timeout = 60000,url = "dubbo://127.0.0.1:6666")2 、使用-D参数,指定服务配置到JVM启动参数java -Dcom.api.common.principa 阅读全文
摘要:
延迟任务的使用场景,以及延迟任务的 10 种实现方式: 手动无线循环; ScheduledExecutorService; DelayQueue; Redis zset 数据判断的方式; Redis 键空间通知的方式; Netty 提供的 HashedWheelTimer 工具类; RabbitMQ 阅读全文
摘要:
// 自动补零 code = String.format("%0" + numLength + "d", currentValue); numLength :总长度 currentValue :数值 阅读全文
摘要:
具体的详解参考: https://xie.infoq.cn/article/d8e897f768eb1a358a0fd6300 SpringBoot配置类: @Configuration public class RedissonConfig { @Resource private Redisson 阅读全文
摘要:
HCOS - Hide Chrome Omnibox suggestions 阅读全文
摘要:
Math.abs(int a):绝对值Math.ceil(double a):向上取整Math.floor(double a):向下取整Math.max(int a,int b):最大值Math.pow(double a,double b):a的b次幂Math.random():随机数 [0.0,1 阅读全文
摘要:
import java.io.*; import java.util.ArrayList; import java.util.List; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; public class 阅读全文
摘要:
mysql 拼接年月查询 STR_TO_DATE(concat(YEAR,'-',MONTH,'-01'),'%Y-%m-%d') <![CDATA[ >= ]]> #{startDate} 阅读全文