posted @ 2021-09-28 16:47 生命如风 阅读(22) 评论(0) 推荐(0) 编辑
摘要:
@SneakyThrows private void downFile(HttpServletResponse response, String path) { File file = new File(path); if (file.exists()) { InputStream ins = ne 阅读全文
摘要:
import com.google.zxing.BarcodeFormat; import com.google.zxing.EncodeHintType; import com.google.zxing.WriterException; import com.google.zxing.client 阅读全文
posted @ 2020-12-05 23:01 生命如风 阅读(107) 评论(0) 推荐(0) 编辑
摘要:
//BigDecimal 去掉结尾的0 @Test public void DecimalTest(){ String test1 = BigDecimal.valueOf(45.00).stripTrailingZeros().toPlainString(); assert "45".equals 阅读全文
posted @ 2020-10-21 11:36 生命如风 阅读(75) 评论(0) 推荐(0) 编辑
摘要:
--获取表的索引 SELECT TABLE_NAME,COLUMN_NAME FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME='TableName'; --查询开启CT后 数据的版本 SELECT 主键,SYS_CHANGE_OPE 阅读全文
posted @ 2018-12-18 12:02 生命如风 阅读(133) 评论(0) 推荐(0) 编辑
摘要:
ALTER TABLE TableName MODIFY COLUMN -- 最后更新时间,自动赋值 dtModify datetime(6) NULL DEFAULT now() ON UPDATE now(); 阅读全文
posted @ 2018-12-11 09:25 生命如风 阅读(113) 评论(0) 推荐(0) 编辑
摘要:
1、下载 epel-release-7-11.noarch.rpm wget http://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm2、rpm -Uvh epel-release*rp 阅读全文
posted @ 2018-11-16 13:57 生命如风 阅读(1443) 评论(0) 推荐(1) 编辑
摘要:
Dockerfile Program.cs 出现404的原因: https://blog.agchapman.com/resolving-404-errors-when-publishing-asp-net-core-for-docker/ 阅读全文
posted @ 2018-10-29 10:09 生命如风 阅读(1018) 评论(0) 推荐(0) 编辑