上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页
摘要: 安装node-sass使用node版本不能太高,否则会报错 checking for Python executable "C:\Program Files\python" in the PATH 下载cnpm: npm install cnpm -g --registry=https://regi 阅读全文
posted @ 2023-02-28 14:57 sowler 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 1.多版本管理工具 nvm https://github.com/coreybutler/nvm-windows/releases nvm-setup.zip 2. 打开nvm文件夹下的settings.txt文件 node_mirror: https://npm.taobao.org/mirror 阅读全文
posted @ 2023-02-28 14:55 sowler 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 1. 查看占用 执行:netstat -ano 或者 netstat -aon|findstr 8080 2. 查看指定 PID 的进程 tasklist|findstr 3104 3. 结束进程 taskkill /T /F /PID 3104 阅读全文
posted @ 2023-02-28 14:32 sowler 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 1.创建eureka微服务模块。导入maven依赖。 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-erver</artifactId 阅读全文
posted @ 2023-02-24 17:01 sowler 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 1.在父工程下面引入module。 <modules> <module>study-design-mode</module> </modules> 2.点击子工程module中的pom文件,进行更新,引入成功。 3.配置子工程的pom文件,引入父工程包。 <parent> <groupId>com. 阅读全文
posted @ 2023-02-22 09:39 sowler 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 1.首先创建一个maven项目 删除src目录,当做一级目录用来管理第三方jar版本控制。 2.配置pom文件。 SpringCloud、SpringCloudAlibaba、SpringBoot版本版本兼容问题。 SpringCloudAlibaba官方整理的版本说明: https://githu 阅读全文
posted @ 2023-02-21 16:58 sowler 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 1.查看spring cloud的版本 https://github.com/alibaba/spring-cloud-alibaba/wiki/%E7%89%88%E6%9C%AC%E8%AF%B4%E6%98%8E https://spring.io/projects/spring-cloud# 阅读全文
posted @ 2023-02-21 15:31 sowler 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1.本地启动项目开启两个启动类出错。 Error creating bean with name 'brokerService' defined in class path resource [com/dfocus/meeting/framework/config/mq/ActiveMQConfig 阅读全文
posted @ 2023-02-15 15:56 sowler 阅读(85) 评论(0) 推荐(0) 编辑
摘要: DynamicServerListLoadBalancer for client shop-product-sentinel initialized: DynamicServerListLoadBalancer:{NFLoadBalancer:name=shop-product-sentinel,c 阅读全文
posted @ 2023-01-16 14:36 sowler 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 1.冒泡排序法 冒泡排序,轮询两个相邻的数据进行比较,如果条件成立,则数据相互转换。直到数据转换完毕。 Integer[] strr={7,5,4,8,6,9,2,3,1,0}; for (int i = 0; i < strr.length - 1; i++){ for (int j = 0; j 阅读全文
posted @ 2022-12-09 13:31 sowler 阅读(16) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页