摘要:
import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java 阅读全文
摘要:
/* * Copyright (C) 2022 www.mobaijun.com * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in com 阅读全文
摘要:
kjs-common JAVA开发,常用工具集(默认集成 Hutool,Lombok,MapStruct ) 概述 kjs-common ,是一个Java开发基础工具类库,对项目开发中常用的工具进行封装,如:加密、http 请求、API 接口等。 目的是帮助开发者更快速、更快捷的开发。 本项目集成了 阅读全文
摘要:
SELECT GROUP_CONCAT(t1.region_name,t2.region_name,t3.region_name) AS address FROM ( SELECT * FROM sys_region WHERE region_level = 1 ) AS t1 INNER JOIN 阅读全文
摘要:
添加 maven 配置 -Dfile.encoding=GBK 阅读全文
摘要:
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2022-06-10 08:59:28.646 [main] ERROR 阅读全文
摘要:
最近重装了电脑,安装完idea,使用idea拉取GitHub项目的时候,报以上错误 SSL certificate problem: unable to get local issuer certificate 这个是由于Git默认开启了SSL验证,关闭即可; 解决方式: git config -- 阅读全文
摘要:
新建了一个仓库用来存放复习的项目代码,但我在git忽略文件添加了/.idea文件夹下的所有内容后,远程仓库提交时还是将这个文件夹下的所有内容提交上去了, 原来在初始化的时候已经将/.idea文件夹提交到本地缓存区了,.idea被git跟踪后,之后在加入到.gitignore文件是没有作用的 解决方案 阅读全文