
spring cloud
ycsdn10
这个作者很懒,什么都没留下…
展开
-
maven-resources-plugin打包后启动提示while scanning for the next tokenfound character ‘@‘ that cannot start
近期在弄SpringBoot启动通过配置文件处理多环境,使用maven的profile来处理,配置文件当中有@profiles.active@。正常启动没有问题,因为添加了resource的过滤。原创 2024-06-24 15:18:04 · 511 阅读 · 0 评论 -
服务端已设置cookie,ajax跨域响应中有,但浏览器获取不到
一、请求响应有cookie,但浏览器没有二、原因由于通过网关路由请求到另外的服务,造成ajax跨域请求,导致cookie没有写进浏览器二、解决方式在ajax请求中添加以下内容 xhrFields: { withCredentials: true }, crossDomain: true,变成:三、重新请求可以看到...原创 2021-11-28 00:33:36 · 1190 阅读 · 0 评论 -
no-referrer-when-downgrade 跨域问题
一、问题ajax请求网关的时候,能够请求到对应的路由服务A,并且成功返回,但是在页面的开发者工具中显示的请求是无响应内容二、背景本地开了几个项目,分别有网关,eureka集群,服务A,服务B等,在浏览器打开nginx指向页面的时候,出现了跨域问题三、解决方式1.方式1:添加config配置config: gateway: globalcors: add-to-simple-url-handler-mapping: true corsConfi原创 2021-11-28 00:16:34 · 5765 阅读 · 0 评论 -
查看浏览器cookie
一、打开开发者工具(或者按F12)二、进入应用程序标签(application)三、点击Cookie原创 2021-11-27 23:56:13 · 824 阅读 · 0 评论 -
If you are using the git profile, you need to set a Git URI in your configuration. If you are using
一、场景启动spring-cloud配置中心的时候,报了一下错误If you are using the git profile, you need to set a Git URI in your configuration. If you are using a native profile and have spring.cloud.config.server.bootstrap=true, you need to use a composite configuration.二、解..原创 2021-11-25 22:38:56 · 5534 阅读 · 2 评论