摘要:
原文链接https://www.sojson.com/blog/80.html 单点登录 ( SSO )的技术被越来越广泛地运用到各个领域的软件系统当中。本文从业务的角度分析了 单点登录 的需求和应用领域;从技术本身的角度分析了 单点登录 技术的内部机制和实现手段,并且给出Web- SSO 和桌面 阅读全文
摘要:
Loki安装使用 安装 loki 四种安装方式 https://github.com/grafana/loki/blob/v1.5.0/docs/installation/README.md 我选择 Installing Loki with Docker or Docker Compose dock 阅读全文
摘要:
Docker 常用命令 输出容器日志到宿主机文件 docker logs contaiername >& logs/myFile.log 阅读全文
摘要:
原文链接 https://ivopereira.net/content/efficient-pagination-dont-use-offset-limit https://hackernoon.com/please-dont-use-offset-and-limit-for-your-pagina 阅读全文
摘要:
一、背景 原文链接 https://blog.csdn.net/trayvonnn/article/details/106239934 仅作分享,感谢作者 本文写的是单应用下的springboot,并非微服务,如果是微服务可以参考nocos或者springcloud config。 一般在企业开发流 阅读全文
摘要:
创建新得ssh key ssh-keygen -t rsa -C "excem@excemple" -f ~/.ssh/id_rsa.gitlab 编辑config vim ~/.ssh/config # gitee Host gitee.com HostName gitee.com Preferr 阅读全文
摘要:
jar 正常启动 开启DEBUG模式需追加参数 注意 要放在 jar 前面 。 | Xdebug | 启用调试 | | | | | Xrunjdwp | 加载JVM的JPDA参考实现库 | | server=y | Xrunjdwp参数(作为调试服务器运行) | | transport=dt_soc 阅读全文
摘要:
定义一个数组 let array = [1, 2, 3, 4]; for (let a in array){ console.log("遍历a的值 "+a+"”,数组中的值" + array[a]) } for (let a of array){ console.log("遍历a的值 "+a); } 阅读全文
摘要:
version: '2.2' services: cerebro: image: lmenezes/cerebro:0.8.3 container_name: cerebro ports: - "9000:9000" command: - -Dhosts.0.host=http://elastics 阅读全文
摘要:
下载 下载页面 https://www.elastic.co/cn/downloads/elasticsearch wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.6.1-linux-x86_64.t 阅读全文