摘要:
在gateway模块中添加一个配置类: 代码如下: @Configuration public class CorsConfig { @Bean public CorsWebFilter corsWebFilter(){ CorsConfiguration config = new CorsConf 阅读全文
摘要:
如果使用UpdateWrapper进行更新数据,默认的机制是将wrapper中设置的字段对应的值进行修改,如果值为null,则不会进行修改; 如果我们需要将指定的字段设置为null,需要在wrapper通过set()方法进行设置。 第一种情况:通过updateWrapper更新数据(不存在将信息保存 阅读全文
摘要:
如果出现该错误,很大可能是没有将依赖进行安装,也有可能是安装之后没有进行导入。 解决方式: 第一步:安装依赖 npm install --save pubsub-js 第二步:将依赖进行导入到renren的main.js中,在使用,具体如下图片 阅读全文
摘要:
出现这个问题大多使用的springboot都是在2.6.x以上,springboot在2.6.x就将依赖循环禁用了,解决方式有以下几种: 解决方式: 1、第一种解决方式: 可以优化自己程序的逻辑,优化bean的依赖关系,只要不形成一个环状就不会出该问题了 2、第二种解决方式: 可以使用@Lazy注解 阅读全文
摘要:
场景: 在bootstrap.properties中编写nacos的配置,读取在nacos中定义的数据集连接oss springboot版本为2.6.8 结果就出现了以上错误 原因: 通过查找资料后发现,在springboot2.4之后,就不会默认在加载bootstrap.properties文件 阅读全文
摘要:
错误信息: When allowCredentials is true, allowedOrigins cannot contain the special value "*" since that cannot be set on the "Access-Control-Allow-Origin" 阅读全文
springcloud gateway根据服务名称进行路由失败There was an unexpected error (type=Service Unavailable, status=503).
摘要:
出现错误,如下图: 解决办法: 检查自己的yaml文件: server: port: 88 spring: application: name: applicationName cloud: nacos: discovery: server-addr: 127.0.0.1:8848 gateway: 阅读全文
摘要:
##1、首先,将依赖进行引入 <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> </dependency> ##2、 阅读全文
摘要:
先将镜像进行拉取 docker pull nacos/nacos-server 运行镜像 docker run --name nacos -e MODE=standalone -p 8848:8848 -d nacos/nacos-server 在这样执行之后,nacos是不会自启动的,如果需要自启 阅读全文
摘要:
先将redis.conf文件进行创建,因为如果不先创建,在redis启动的时候,/etc/redis/中本没有文件,就会将redis.conf创建为一个文件夹 mkdir -p /mydata/redis/conf touch /mydata/redis/conf/redis.conf 执行以下命令 阅读全文