- 博客(16)
- 收藏
- 关注
原创 (已解决)启动vue3项目出现error when starting dev server:ReferenceError: structuredClone is not defined
此错误是由于Vite需要的node.js的版本在18+以上。安装完高版本的nodejs 需要看一下是否安装成功。直接升级Nodejs 即可。
2025-01-16 12:39:39
651
1
原创 (完美解决)Connection refused: no further information: /127.0.0.1:9848
SpringCloud项目整合Nacos时启动一直显示连接127.0.20.1:9848失败,因为在Nacos2.X以后,Nacos新增了两个端口9848和9849,所以有这个报错很正常,但是我的Nacos是在服务器中部署的,而且,服务启动成功并注册到了Nacos中,他还是报这个错我就很费解。最终解决方案:将Nacos配置信息放到Bootstrap.yml中即可,还有一种方法是可以将SpringCloud进行版本升级或降级Nacos(本人懒得弄,主要是怕又遇到一堆问题,有兴趣的可以试试)
2024-04-19 09:41:24
4660
5
原创 Error: EPERM: operation not permitted, mkdir ‘D:\Program Files\VSCode_WorkBase\ITHeiMa\node_modules
在使用npm install 安装插件出现权限不足的错误。
2022-08-21 16:41:13
1159
1
原创 在使用Nacos拉取配置的时候报错
报错信息Error creating bean with name 'userController': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'pattern.dateformat' in value "${pattern.dateformat}"解决办法1. 将nacos
2022-05-27 16:32:58
2395
2
原创 No transformation found: class io.ktor.utils.io.ByteBufferChannel -> class com.example.plugins.XXX
HttpClient Gson
2021-12-29 16:16:21
2223
原创 解决closing inbound before receiving peer‘s close_notify
使用 Kotlin中的Exposed进行数据库连接时出现了以下问题:虽然报错了,但是可以看到sql命令的执行成功了并且插入到了数据库里面,由此可以看出,他是在执行完命令以后出的问题经过百度后发现,在连接数据库的时候Url参数没有加上useSSL=false,加上以后就没问题了...
2021-12-17 18:46:30
2895
原创 [已解决]ConnectException: Connection timed out: no further information
前言java.net.ConnectException: Connection timed out: no further information at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) at org.apache.zookeeper.ClientCnx...
2021-11-08 16:57:51
11994
原创 Eureka的自我保护机制
1.概述保护模式主要用于一组客户端和Eureka Server之间存在网络分区场景下的保护。一旦进入保护模式,Eureka Server将会尝试保护其服务注册表中的信息,不再删除服务注册表中的数据,也就是不会注销任何微服务。如果在Eureka Server的首页看到以下这段提示,则说明Eureka进入了保护模式:EMERGENCY! EUREKA MAY BE INCORRECTLY CLAIMING INSTANCES ARE UP WHEN THEY’RE NOT. RENEWALS
2021-11-04 23:34:21
629
原创 Eureka的服务发现
需要在提供者的启动类上加上@EnableDiscoveryClient注解@GetMapping("/payment/discovery") public Object discovery(){ List<String> services = discoveryClient.getServices(); services.forEach(service -> log.info("服务名字为:"+service) ); List.
2021-11-04 23:07:37
142
原创 SpringCloud中的Eureka使用
1.首先需要引入依赖<!--eureka的客户端--><dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId></dependency> <!--eureka-服务端--><depend
2021-11-04 21:52:33
331
转载 Linux 安装Docker
1.首先更新yum注:如果是新的linux系统运行此命令是安装yum sudo yum update2.安装需要的软件包, yum-util 提供yum-config-manager功能,另外两个是devicemapper驱动依赖的 sudo yum install -y yum-utils device-mapper-persistent-data lvm23.设置yum源sudo yum-config-manager --add-repo https://download.
2021-10-30 18:47:59
97
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人