上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 26 下一页
摘要: String转Long的两种方法 1、Long.valueOf("String")返回Long包装类型 2、Long.parseLong("String")返回long基本数据类型 String类型时间转Long类型时间戳 String time = ""; Long timestamp = new 阅读全文
posted @ 2021-03-10 14:37 DiligentCoder 阅读(4078) 评论(0) 推荐(0)
摘要: https://shentuzhigang.blog.csdn.net/article/details/105206278 阅读全文
posted @ 2021-03-08 11:32 DiligentCoder 阅读(371) 评论(0) 推荐(0)
摘要: http://www.pdfdo.com/pdf-to-word.aspx 阅读全文
posted @ 2021-03-07 16:56 DiligentCoder 阅读(89) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/laumians-notes/p/9069498.html 阅读全文
posted @ 2021-03-06 14:34 DiligentCoder 阅读(72) 评论(0) 推荐(0)
摘要: 首先维护一张两点之间的表 tmp: | a | b | | | | | 1 | 2 | insert into tmp select * from tmp t where not exists ( select 1 from tmp where t.b=# and t.a=# ) and not e 阅读全文
posted @ 2021-03-02 11:36 DiligentCoder 阅读(475) 评论(0) 推荐(0)
摘要: 语句 ALTER TABLE t_test ALTER COLUMN nickname SET DEFAULT ‘刘德华’; 阅读全文
posted @ 2021-03-01 12:46 DiligentCoder 阅读(265) 评论(0) 推荐(0)
摘要: #!/bin/bash -ilex #服务名称 SERVER_NAME=project-name 源jar路径,mvn打包完成之后,target目录下的jar包名称,也可选择成为war包,war包可移动到Tomcat的webapps目录下运行,这里使用jar包,用java -jar 命令执行 JAR 阅读全文
posted @ 2021-02-25 10:17 DiligentCoder 阅读(521) 评论(0) 推荐(0)
摘要: Spring boot中的注解@ConditionalOnProperty,可以通过配置文件中的属性值来判定configuration是否被注入. 配置类: @Configuration @ConditionalOnProperty(prefix = "x.y", name = "test", ha 阅读全文
posted @ 2021-02-22 18:04 DiligentCoder 阅读(3080) 评论(0) 推荐(1)
摘要: import lombok.extern.slf4j.Slf4j; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.anno 阅读全文
posted @ 2021-02-22 17:36 DiligentCoder 阅读(905) 评论(0) 推荐(0)
摘要: ............................................................................................................................................ 假设我们对tbl进 阅读全文
posted @ 2021-02-22 15:51 DiligentCoder 阅读(370) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 26 下一页