摘要: foreach元素的属性主要有item,index,collection,open,separator,close。item表示集合中每一个元素进行迭代时的别名,index指定一个名字,用于表示在迭代过程中,每次迭代到的位置,open表示该语句以什么开始,separator表示在每次进行迭代之间以什 阅读全文
posted @ 2021-09-16 13:35 iullor 阅读(193) 评论(0) 推荐(0) 编辑
摘要: git官方源比较慢,这个是国内的镜像,可以下载git https://npm.taobao.org/mirrors/git-for-windows/ 阅读全文
posted @ 2021-08-29 15:25 iullor 阅读(781) 评论(0) 推荐(0) 编辑
摘要: 1,Idea Live Templates配置详解及演示 https://blog.csdn.net/qq_33306246/article/details/106600939 https://blog.csdn.net/qq_33306246/article/details/106600939 2 阅读全文
posted @ 2021-08-18 09:16 iullor 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 永久修改本地npm的配置: npm config set registry https://registry.npm.taobao.org 重置为官方源 npm config set registry https://registry.npmjs.org/ 阅读全文
posted @ 2021-08-07 11:49 iullor 阅读(119) 评论(0) 推荐(0) 编辑
摘要: #官方提供的建议规则 https://start.spring.io/actuator/info { "git": { "branch": "d307081a71bbf81f83ce723f9f92b22aef719fc2", "commit": { "id": "d307081", "time": 阅读全文
posted @ 2021-08-06 10:26 iullor 阅读(188) 评论(0) 推荐(1) 编辑
摘要: 原因是因为docker在build的时候默认会将Dockerfile同级的所有文件发送给deamon进程 默认不推荐将其他文件和Dockerfile放在同级目录下,例如以下结构 --|log --|xxx.log --|back xxx.jar Dockerfile 解决方式, 1,按照默认方式,将 阅读全文
posted @ 2021-07-05 09:58 iullor 阅读(645) 评论(0) 推荐(0) 编辑
摘要: location 后面地址的说明 location /api/esbapi nginx 会对前端访问的地址进行截取,例如前端访问地址是 http://localhost:4800/api/esbapi/manager/cm0004 那么截取后 剩余的地址为 /manager/cm0004 ,然后再加 阅读全文
posted @ 2021-07-02 11:44 iullor 阅读(3263) 评论(0) 推荐(0) 编辑
摘要: ###项目中一般都是前后端分离 前端定义的统一规则,如开发中页面上的访问地址统一一 如前端访问 http://localhost:8888/api/esbapi/manager/cm0004 而后台接口 http://127.0.0.1:56668/manager/cm0004 比对一下 前端访问的 阅读全文
posted @ 2021-07-02 09:39 iullor 阅读(2986) 评论(0) 推荐(0) 编辑
摘要: 1,基本命令 uname -m 显示机器的处理器架构 uname -r 显示正在使用的内核版本 dmidecode -q 显示硬件系统部件 (SMBIOS / DMI) hdparm -i /dev/hda 罗列一个磁盘的架构特性 hdparm -tT /dev/sda 在磁盘上执行测试性读取操作系 阅读全文
posted @ 2021-06-25 19:24 iullor 阅读(54) 评论(0) 推荐(0) 编辑
摘要: Linux服务器正常使用arthas 下载arthas-packaging-3.1.7-bin.zip 并将arthas的安装包放置到服务器上,然后解压zip包 #解压安装包 unzip arthas-packaging-3.1.7-bin.zip #安装arthas sh ./install-lo 阅读全文
posted @ 2021-06-09 09:16 iullor 阅读(1365) 评论(0) 推荐(1) 编辑