摘要:
pom 依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependency> 注册websocket服务 /** 阅读全文
摘要:
ClassLoader.getSystemClassLoader方法无论何时均会返回ApplicationClassLoader,其只加载classpath下的class文件。 在javaSE环境下,一般javaSE项目的classpath为bin/目录,因此只要编译后的class文件在classp 阅读全文
摘要:
拉取镜像 docker pull sonatype/nexus3 生成容器 # 此处要修改数组机目录为777即/usr/nexus-data docker run -d -p 8081:8081 --name nexus -v /usr/nexus-data:/nexus-data --restar 阅读全文
摘要:
本文参考:https://www.cnblogs.com/mithrilon/p/13985710.html 获取镜像 docker pull twang2218/gitlab-ce-zh 生成镜像参数 docker run --name "gitlabTest" --hostname "106.5 阅读全文
摘要:
Object源码 public class Object { //native表明该方法是否操作系统实现,java调用操作系统底层代码获取哈希值 public native int hashCode(); //直接比较地址 public boolean equals(Object obj) { re 阅读全文
摘要:
概述 注入树形数据加载出下拉checkbox-group,数据是比下拉树看着要清晰一点 效果 组件代码 <template> <div class="form-check-select-main"> <el-select v-model="inputData" :style="selectStyle 阅读全文
摘要:
URL fileUrl = DbConfig.class.getClassLoader().getResource(fileName); System.out.println("fileUrl = " + fileUrl.getPath()); InputStream in = fileUrl.op 阅读全文
摘要:
spring cloud nacos 平台搭建——nacso注册中心搭建spring cloud nacos 平台搭建——服务注册 官方demo:https://github.com/nacos-group/nacos-examples 注意版本对应 版本说明 Wiki pom配置 <?xml ve 阅读全文
摘要:
官方demo:https://github.com/nacos-group/nacos-examples 注意版本对应 版本说明 Wiki spring cloud nacos 平台搭建——nacso注册中心搭建: https://www.cnblogs.com/cyh1282656849/p/14 阅读全文
摘要:
nacos文档:https://nacos.io/zh-cn/docs/what-is-nacos.html 安装Nacos server 步骤参见 Nacos 快速入门注意版本对应 版本说明 Wiki 单机模式启动 startup.sh(startup.cmd) -m standalone 集群模 阅读全文