
网关
文章平均质量分 60
码农UP2U
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Spring Cloud Gateway 的简单搭建
早期文章 服务注册、发现和远程调用 让 MongoDB 的 CRUD 有 JPA 的味道 使用 MongoTemplate 对 MongoDB 进行 CRUD 省内存的 Excel 导入导出库还是得了解下它... 后端程序员的 VUE 超简单入门笔记 后端程序员的 ES6 超简单入门笔记 看完即可上手 MyBatis-Plus 奇怪的函数调用 打造后台登录页面扫描工具 一道有趣的 Java 基础题 Sp原创 2021-11-09 17:11:00 · 3753 阅读 · 0 评论 -
Spring Cloud Gateway 处理跨域
添加如下代码,即可处理跨域问题。 @Configuration public class CorsConfig { @Bean public CorsWebFilter corsFilter() { CorsConfiguration config = new CorsConfiguration(); config.addAllowedMethod("*"); config.addAllowedOrigin("*"); ...原创 2021-10-02 16:35:54 · 504 阅读 · 0 评论