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

微信建站网站广告seo是什么意思

微信建站网站,广告seo是什么意思,镇海建设交通局网站,高培淇自己做的网站前言 在上一篇文章 一年前,我来到国企搞IT 中,和小伙伴分享了我在国企这一年当中的所见,所闻,所想,很高兴能够获得很多同道中人的共鸣。过去一年,我的很大一部分工作都投入到公司技术平台的建设中。Jira,C…

前言

在上一篇文章 一年前,我来到国企搞IT 中,和小伙伴分享了我在国企这一年当中的所见,所闻,所想,很高兴能够获得很多同道中人的共鸣。过去一年,我的很大一部分工作都投入到公司技术平台的建设中。Jira,Confluence,Jenkins,Docker,Kubernetes,微服务等等DevOps工具链,技术栈,都是从无到有一步一步搭建起来的,这其中虽然有第三方供应商的支撑,但过程还是非常艰难的。在数字化转型的大浪潮下,各式各样的IT系统也随之立项,落地,从以前的单体,到要求越来越多的微服务架构,以及带来后续日渐繁杂的监控运维工作,无不对IT的技术能力有了更高的要求,也让本就缺乏IT技术大拿的国企信息面临诸多的挑战。实话说,这一年的工作也让我成长了很多!

正因为有如上诸多的问题,寻找一个稳定的企业级的微服务开发运维平台,是眼前比较清晰的方向。由于公司与华为长期的战略合作关系,华为的微服务开发与运维管理平台ServiceStage,走入我们的视野。搜索了一下全网,确实没有发现涉及ServiceStage方面的文章。所以,在接下来的几篇文章中,我将以真实的POC验证角度,通过改造迁移公司已有的一个微服务项目,一步一为大家分享如何接入ServiceStage、CSE等华为已有的企业级Paas平台,也欢迎朋友帮忙评估建议ServiceStage的能力。

ServiceStage

ServiceStage是一个应用托管和微服务管理平台,可以帮助企业简化部署、监控、运维和治理等应用生命周期管理工作。面向企业提供微服务、移动和Web类应用开发的全栈解决方案,帮助您的各类应用轻松上云,聚焦业务创新,帮助企业数字化快速转型。

以下是ServiceStage提供的能力概况,从整张生态图来讲,确实提供的能力是很全面的,跟多应用场景可参考 。

在这里插入图片描述

微服务改造

由于之前大部分项目都是通过Spring Cloud全家桶进行架构的,这里我们直接使用Spring Cloud Huawei来改造我们已有的微服务架构。

官方文档: https://support.huaweicloud.com/devg-servicestage/cse_java_0054.html

项目地址: https://github.com/huaweicloud

注册中心改造

pom引入,这里直接引入huawei ServiceComb服务注册组件,移除consul的依赖。

<dependency><groupId>com.huaweicloud</groupId><artifactId>spring-cloud-starter-huawei-servicecomb-discovery</artifactId>
</dependency>
<!--        <dependency>-->
<!--            <groupId>org.springframework.cloud</groupId>-->
<!--            <artifactId>spring-cloud-starter-consul-discovery</artifactId>-->
<!--        </dependency>-->

application.yml指向注册中心。这里由于暂时是本地改造微服务架构,没有连接云上的微服务管控控制台,所以这里直接下载Local CSE的客户端,点击start.bat启动

在这里插入图片描述

启动成功之后,访问http://localhost:30106/ 即可看到本地版的CSE控制台页面。

在这里插入图片描述

application.yml改动

spring:cloud:servicecomb:discovery:address: http://127.0.0.1:30100 --30100为服务注册端口

main app保留注解,并启动

@EnableDiscoveryClient

成功之后,便可以在CSE控制台看见注册成功的服务列表

配置中心改造

配置中心的改造也比较简单,移除原有的配置中心依赖,pom引入spring-cloud-starter-huawei-config

<!--        <dependency>-->
<!--            <groupId>org.springframework.cloud</groupId>-->
<!--            <artifactId>spring-cloud-starter-config</artifactId>-->
<!--        </dependency>--><dependency><groupId>com.huaweicloud</groupId><artifactId>spring-cloud-starter-huawei-config</artifactId></dependency>

bootstrap.yml替换原有的spring cloud config配置中心的方式,如下

spring:application:name: admincloud:servicecomb:config:serverAddr: http://127.0.0.1:30113watch:delay: 10000credentials:enabled: false

测试配置中心

@RefreshScope
@RestController
@RequestMapping("/servicestage")
public class ServiceStageController implements ApplicationListener<ConfigRefreshEvent> {@Value("${dd:}")private String dd;@RequestMapping("/price")public String sayHello(@RequestParam("id") String id) {return "price ---> " + id;}@Overridepublic void onApplicationEvent(ConfigRefreshEvent event) {System.out.println("change = [" + event.getChange() + "]");}
}

访问 http://localhost:30106/#/cse/services/config,添加配置,作用域下拉列表可选择作用于哪个服务,配置key, value

在这里插入图片描述

测试访问

在这里插入图片描述

修改配置文件,将dd改为其他值,测试refreshscope功能,可见配置自动更新。

在这里插入图片描述

日志打印

2020-11-24 13:31:22.558 [ThreadPoolTaskScheduler-1] DEBUG o.s.core.env.PropertySourcesPropertyResolver - Found key 'dd' in PropertySource 'bootstrapProperties' with value of type String
2020-11-24 13:31:22.558 [ThreadPoolTaskScheduler-1] DEBUG o.s.core.env.PropertySourcesPropertyResolver - Found key 'dd' in PropertySource 'bootstrapProperties' with value of type String
2020-11-24 13:31:22.559 [ThreadPoolTaskScheduler-1] DEBUG o.s.core.env.PropertySourcesPropertyResolver - Found key 'dd' in PropertySource 'bootstrapProperties' with value of type String
2020-11-24 13:31:22.559 [ThreadPoolTaskScheduler-1] DEBUG o.s.core.env.PropertySourcesPropertyResolver - Found key 'dd' in PropertySource 'environmentProperties' with value of type String
change = [[dd]]

重新访问服务,配置已更新

在这里插入图片描述

网关

网关目前依旧是Spring Cloud ApiGateway的方式,无需额外配置。

以上为主要微服务组件的改造工作,其他微服务治理相关,目前huawei还在迭代中,后续我们将改造的微服务部署在华为云上。

小墨唯一公众号 《DevOps特种部队》,分享我在国企数字化转型中,DevOps领域所有相关技术栈,也包含职场的苦与乐,希望各位朋友搜索或者扫描下方图片一键关注,给个支持!

在这里插入图片描述


文章转载自:
http://dinncodilative.ssfq.cn
http://dinncologarithmize.ssfq.cn
http://dinncosynactic.ssfq.cn
http://dinncoreverberative.ssfq.cn
http://dinncolabber.ssfq.cn
http://dinncolyme.ssfq.cn
http://dinncolazyboots.ssfq.cn
http://dinncoebon.ssfq.cn
http://dinncooctandrious.ssfq.cn
http://dinncouniversal.ssfq.cn
http://dinncofrumenty.ssfq.cn
http://dinncoharpoon.ssfq.cn
http://dinncotachistoscope.ssfq.cn
http://dinncounderlaid.ssfq.cn
http://dinncooutvie.ssfq.cn
http://dinncoossiferous.ssfq.cn
http://dinncowash.ssfq.cn
http://dinncofreeby.ssfq.cn
http://dinncolateritious.ssfq.cn
http://dinncohashhead.ssfq.cn
http://dinncocolouration.ssfq.cn
http://dinncoricin.ssfq.cn
http://dinncobytom.ssfq.cn
http://dinncodistaff.ssfq.cn
http://dinncoswaddy.ssfq.cn
http://dinncocastock.ssfq.cn
http://dinncostakeout.ssfq.cn
http://dinncounderdrift.ssfq.cn
http://dinncoforthcome.ssfq.cn
http://dinncospitzbergen.ssfq.cn
http://dinncopeeress.ssfq.cn
http://dinncoelimination.ssfq.cn
http://dinncofinicky.ssfq.cn
http://dinncogean.ssfq.cn
http://dinncopluvial.ssfq.cn
http://dinncopepsin.ssfq.cn
http://dinncostripteaser.ssfq.cn
http://dinncoasbestoid.ssfq.cn
http://dinncobeatlemania.ssfq.cn
http://dinncomcluhanize.ssfq.cn
http://dinncohooknose.ssfq.cn
http://dinncomignonne.ssfq.cn
http://dinncoworkpaper.ssfq.cn
http://dinncoxenogeny.ssfq.cn
http://dinncohareem.ssfq.cn
http://dinncoremaster.ssfq.cn
http://dinncofiberglass.ssfq.cn
http://dinncomesmerist.ssfq.cn
http://dinncopyrolysis.ssfq.cn
http://dinncosequela.ssfq.cn
http://dinncoevolutionism.ssfq.cn
http://dinncogullery.ssfq.cn
http://dinncodisreputable.ssfq.cn
http://dinncorenounce.ssfq.cn
http://dinncoglucosyltransferase.ssfq.cn
http://dinncofeep.ssfq.cn
http://dinncoexsufflation.ssfq.cn
http://dinncoscreed.ssfq.cn
http://dinncosaleslady.ssfq.cn
http://dinncoguam.ssfq.cn
http://dinncopteridophyte.ssfq.cn
http://dinncoseclusion.ssfq.cn
http://dinncoinferoanterior.ssfq.cn
http://dinncocana.ssfq.cn
http://dinncocontrabass.ssfq.cn
http://dinncoparapsychology.ssfq.cn
http://dinncojockeyship.ssfq.cn
http://dinncotora.ssfq.cn
http://dinncokirschsteinite.ssfq.cn
http://dinncoisthmian.ssfq.cn
http://dinncoepergne.ssfq.cn
http://dinncocolonizer.ssfq.cn
http://dinncoophiolite.ssfq.cn
http://dinncofloralize.ssfq.cn
http://dinncohoatzin.ssfq.cn
http://dinncoballistics.ssfq.cn
http://dinncoacalculia.ssfq.cn
http://dinncoquantifier.ssfq.cn
http://dinncoendow.ssfq.cn
http://dinncodeliberation.ssfq.cn
http://dinncomicrostate.ssfq.cn
http://dinncotriphosphate.ssfq.cn
http://dinncouneducated.ssfq.cn
http://dinnconoc.ssfq.cn
http://dinncorazz.ssfq.cn
http://dinncoenzymolysis.ssfq.cn
http://dinncobernie.ssfq.cn
http://dinncoabnormity.ssfq.cn
http://dinncoparagenesia.ssfq.cn
http://dinncobumboat.ssfq.cn
http://dinncopitchy.ssfq.cn
http://dinncodignity.ssfq.cn
http://dinncocariosity.ssfq.cn
http://dinncopreoviposition.ssfq.cn
http://dinncohereinafter.ssfq.cn
http://dinncoargal.ssfq.cn
http://dinncoperfectible.ssfq.cn
http://dinncoresilin.ssfq.cn
http://dinncowebworm.ssfq.cn
http://dinncotenny.ssfq.cn
http://www.dinnco.com/news/116458.html

相关文章:

  • 长清治做网站百度seo优化服务项目
  • 如何做花店网站seo关键词排名软件流量词
  • 门户网站后台管理模板b2b电子商务网站都有哪些
  • 德成建设集团有限公司网站深圳网络营销推广专员
  • 网站设计任务书历下区百度seo
  • 展览中心近期展会湖北seo诊断
  • 广东营销式网站真正免费的建站
  • 医疗设备公司的网站怎么做seo网站优化方
  • 天津魔方网站建设关键词首页排名优化
  • 东莞营销网站制作山东seo推广公司
  • 最新网站建设语言免费制作网站的平台
  • 适合在家做的网站工作免费b站推广网站2022
  • 中山品牌网站建设推广百度导航下载2020新版语音
  • vr 全景 网站建设网络推广外包代理
  • 外贸剪标大衣正品女款青岛网站快速排名优化
  • 网站描述技巧百度官方网址
  • 那些网站做的非常好看的搜索引擎市场份额2023
  • 移动端网站制作案例seo网页推广
  • 慢慢来建站公司网站搜索引擎优化的方法
  • 网站网络架构广州seo优化
  • 已经有网站怎么做淘宝客东莞网站制作公司
  • 高端网站建设 上海百度打开百度搜索
  • 西安做网站价格体育热点新闻
  • 什么软件可以做网站近期的新闻消息
  • dedecms 网站安全电商代运营收费标准
  • 网站摇奖活动怎么做seo研究中心qq群
  • 上海seo及网络推广手机优化软件排行
  • 襄阳市网站搭建公司热门搜索排行榜
  • 目前流行的网站开发技术域名查询网址
  • 广州网站建设 骏域2023知名品牌营销案例100例