随笔分类 - 随手记
记录一些常用的小知识
摘要:==await 关键字:== 在JavaScript中,`await`关键字用于等待一个异步函数的完成,并暂停当前函数的执行,直到异步函数返回一个解决的值(resolved value)或被拒绝的原因(rejected reason)。 `await`关键字只能在`async`函数内部使用。使用`a
阅读全文
摘要:2022.3 IDEA 破解教程(可升级) 官网下载 2022.3 版的 IDEA https://pan.baidu.com/s/1Y0KOWloj3ePkrgeF428Uyg?pwd=gkv9 下载下面的破解工具。 https://pan.baidu.com/s/1U5imcO0mstDrhlE
阅读全文
摘要:当使用 注解注入属性时,出现下面这种情况 可以尝试 private static IMessageInfoService messageInfoService; @Autowired public void setService(IMessageInfoService service) { MyWe
阅读全文
摘要:什么是JRebel ? JRebel是一套JavaEE开发工具。 Jrebel 可快速实现热部署,节省了大量重启时间,提高了个人开发效率。 JRebel是一款JAVA虚拟机插件,它使得JAVA程序员能在不进行重部署的情况下,即时看到代码的改变对一个应用程序带来的影响。JRebel使你能即时分别看到代
阅读全文
摘要:List<Object> msgList = getCpsPushModels(templateMsgList); //计算总页数 int totalPage = msgList.size()/pageSize + (msgList.size()%pageSize == 0 ? 0:1); for
阅读全文
摘要:https://blog.csdn.net/qq_36551991/article/details/109499487
阅读全文
摘要:https://blog.csdn.net/weixin_43395106/article/details/113384464 https://blog.csdn.net/A_Gui_Code/article/details/106978867 demo1 List<A> list = new Ar
阅读全文
摘要:<sql id="selectCenterSystemFileVo"> select id, file_name, file_pattern, update_cycle, custom_time, create_time, modify_time, remark, status, del_flag
阅读全文
摘要:实际项目中有以下几种配置文件 1、开发环境(dev) 2、测试环境(test) 3、预生产环境(pre) 4、生产环境(prd):生产环境的配置文件,一般开发人员是没有权限进行修改的。都是运维修改。 目录结构如下图: 需要注意的是,生产环境的配置文件的命名规范,都要以application开发,以.
阅读全文
摘要:https://zookeeper.apache.org/releases.html
阅读全文
摘要:添加依赖 <!-- 热部署 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optio
阅读全文
摘要:1、git config user.email # 获取用户邮箱 2、git config user.name # 获取用户名 3、git config --list # 获取用户全部信息 4、git config --global user.name "你的目标用户名" # 修改全局用户名 5、g
阅读全文
摘要:Spring 官网(默认) https://start.spring.io 阿里 http://start.aliyun.com
阅读全文