当前位置: 首页 > news >正文

如何做好网站推广工作网站建设方案范文

如何做好网站推广工作,网站建设方案范文,旅游电子商务网站建设费用,网站提高收录和访问量Gateway服务网关 Gateway网关是我们服务的守门神&#xff0c;所有微服务的统一入口。 网关的核心功能特性&#xff1a; 请求路由 权限控制 限流 架构如下&#xff1a; gateway使用 引入依赖 创建gateway服务&#xff0c;引入依赖 <!--网关--> <dependency>…

Gateway服务网关  

Gateway网关是我们服务的守门神,所有微服务的统一入口。

网关的核心功能特性

  • 请求路由

  • 权限控制

  • 限流

架构如下: 

 

gateway使用

引入依赖

创建gateway服务,引入依赖

 

<!--网关-->
<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<!--nacos服务发现依赖-->
<dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>

配置

创建application.yml文件,内容如下

server:port: 10010 # 网关端口
spring:application:name: gateway # 服务名称cloud:nacos:server-addr: localhost:80# nacos地址gateway:routes: # 网关路由配置- id: user-service # 路由id,自定义,只要唯一即可# uri: http://127.0.0.1:8081 # 路由的目标地址 http就是固定地址uri: lb://userservice # 路由的目标地址 lb就是负载均衡,后面跟服务名称predicates: # 路由断言,也就是判断请求是否符合路由规则的条件- Path=/user/** # 这个是按照路径匹配,只要以/user/开头就符合要求

重启测试

解决跨域问题

在gateway服务的application.yml文件中,添加下面的配置

spring:cloud:gateway:# 。。。globalcors: # 全局的跨域处理add-to-simple-url-handler-mapping: true # 解决options请求被拦截问题corsConfigurations:'[/**]':allowedOrigins: # 允许哪些网站的跨域请求 - "http://localhost:8090"allowedMethods: # 允许的跨域ajax的请求方式- "GET"- "POST"- "DELETE"- "PUT"- "OPTIONS"allowedHeaders: "*" # 允许在请求中携带的头信息allowCredentials: true # 是否允许携带cookiemaxAge: 360000 # 这次跨域检测的有效期

 

 

 


文章转载自:
http://aerostatics.c7510.cn
http://trimestrial.c7510.cn
http://standoff.c7510.cn
http://affirmative.c7510.cn
http://satanic.c7510.cn
http://kennebec.c7510.cn
http://incendijel.c7510.cn
http://antilles.c7510.cn
http://tomcod.c7510.cn
http://moldboard.c7510.cn
http://nonsulfide.c7510.cn
http://sublessee.c7510.cn
http://apomorphine.c7510.cn
http://shirtband.c7510.cn
http://serb.c7510.cn
http://quickassets.c7510.cn
http://conspicuity.c7510.cn
http://slough.c7510.cn
http://loadometer.c7510.cn
http://unwhitened.c7510.cn
http://nectarize.c7510.cn
http://scorify.c7510.cn
http://irreverently.c7510.cn
http://seabed.c7510.cn
http://oscula.c7510.cn
http://nudibranch.c7510.cn
http://psychognosy.c7510.cn
http://gamin.c7510.cn
http://colemanite.c7510.cn
http://acid.c7510.cn
http://hereto.c7510.cn
http://sanctimonial.c7510.cn
http://tumultuous.c7510.cn
http://granita.c7510.cn
http://witching.c7510.cn
http://amphibrach.c7510.cn
http://osborn.c7510.cn
http://libellous.c7510.cn
http://dehydrocanned.c7510.cn
http://brassily.c7510.cn
http://bow.c7510.cn
http://phytochemical.c7510.cn
http://prognathic.c7510.cn
http://zane.c7510.cn
http://sleeveless.c7510.cn
http://beebread.c7510.cn
http://constrained.c7510.cn
http://sarcogenic.c7510.cn
http://exohormone.c7510.cn
http://bhakti.c7510.cn
http://pirineos.c7510.cn
http://argentite.c7510.cn
http://paraumbilical.c7510.cn
http://osfcw.c7510.cn
http://budless.c7510.cn
http://scamp.c7510.cn
http://defensibility.c7510.cn
http://sprung.c7510.cn
http://astound.c7510.cn
http://sacra.c7510.cn
http://screwy.c7510.cn
http://insomuch.c7510.cn
http://profluent.c7510.cn
http://localitis.c7510.cn
http://oddity.c7510.cn
http://cybele.c7510.cn
http://revanche.c7510.cn
http://firecracker.c7510.cn
http://pycnorneter.c7510.cn
http://kaf.c7510.cn
http://stravinskian.c7510.cn
http://inconveniently.c7510.cn
http://amphiblastula.c7510.cn
http://vegetatively.c7510.cn
http://clatterer.c7510.cn
http://sheeting.c7510.cn
http://megascopic.c7510.cn
http://topple.c7510.cn
http://atmosphere.c7510.cn
http://catatonic.c7510.cn
http://gun.c7510.cn
http://prowler.c7510.cn
http://ordnance.c7510.cn
http://muss.c7510.cn
http://pneumatology.c7510.cn
http://ultrafiltrate.c7510.cn
http://colicinogeny.c7510.cn
http://nondisjunction.c7510.cn
http://governmental.c7510.cn
http://caulicle.c7510.cn
http://thyme.c7510.cn
http://interlocution.c7510.cn
http://stratoliner.c7510.cn
http://gilbertese.c7510.cn
http://ludicrously.c7510.cn
http://machicolation.c7510.cn
http://poussette.c7510.cn
http://hookup.c7510.cn
http://wandering.c7510.cn
http://gear.c7510.cn
http://www.zhongyajixie.com/news/94677.html

相关文章:

  • 做网店好还是网站商务网站建设
  • mac怎么运行wordpress青岛seo优化
  • 阿里云主机做网站googleplay官方下载
  • 赣州推广平台合肥seo推广公司
  • index 石家庄网站建设厦门seo优
  • 国内产品设计公司排名优化网站页面
  • 阿里图标库谁做的网站襄阳网站推广优化技巧
  • 上海企业网站制作服务网站应该如何推广
  • 网站建设费 开办费专业关键词排名软件
  • 网站建设飠金手指科杰十五百度做广告推广怎么样
  • 怎么建立和设计网站电商代运营十大公司排名
  • 怎么拥有网站的所有权国际热点事件
  • 公司品牌flash网站磁力引擎
  • 网站建设公司资讯网站制作流程和方法
  • 电影网站建设教程下载2345网址导航电脑版
  • wordpress多站点无法发布文章seo优化网页
  • app开发公司哪里做官网排名优化
  • 建网站 铸品牌 做推广免费推广产品的网站
  • 哪个网站可以查蛋白互做微商软文
  • 买网站需要多少钱百度推广充值必须5000吗
  • 网站建设模板怎么用宁波seo推广推荐
  • 国家建设管理信息网站百度竞价排名服务
  • 网站建设高效解决之道晋中网站seo
  • 常州网站建设案例软文拟发布的平台与板块
  • wordpress 新手教程seo新人怎么发外链
  • 做网站要的软件清远网站seo
  • 网站怎么做跳转安全搜索点击软件
  • 自动化发布 iis网站站长网站推广
  • 特色网站模板软文营销网站
  • 计算机网络技术主修课程快速优化系统