SpringCloud
→_→BéLieve
这个作者很懒,什么都没留下…
展开
-
记简单SpringCloud项目环境搭建
1、父工程创建创建父工程,pom.xml<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.7.RELEASE</version></parent><dependencies> <de原创 2020-08-30 20:37:10 · 270 阅读 · 0 评论 -
Spring Cloud 常用依赖
本文转载自博客园作者:吊儿郎当小少年,点击前往原文。<!-- 将微服务provider侧注册进eureka --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>转载 2020-08-17 14:28:55 · 2186 阅读 · 0 评论 -
SpringBoot莫名报错:Failed to start component [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbed
https://blog.csdn.net/u010886217/article/details/84500546转载 2020-08-16 20:47:10 · 463 阅读 · 0 评论 -
java.lang.TypeNotPresentException: Type javax.xml.bind.JAXBContext not present
Java 11 启动 Spring Boot 应用报错Type javax.xml.bind.JAXBContext not presentUnable to start embedded TomcatError starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.2020-08-13 10:37:29.857 ERROR 9420 -原创 2020-08-13 10:50:16 · 273 阅读 · 0 评论 -
postman报415(Unsupported Media Type)不支持的类型异常
本文转载自博客作者:wcuuchina,点击查看原文报(Unsupported Media Type)异常主要原因为,前端工具请求接口的类型和后端服务器定义的类型不一致造成,一般工具请求类型和后端保持一致后,即可正常请求。解决:在POSTMAIN工具添加headerkey:Content-Type value:application/json注: 此文章只为记录开发过程中的错误,学习,如发现侵权请私信删除...转载 2020-08-13 01:10:25 · 1656 阅读 · 0 评论 -
Reason: No converter found capable of converting from type [java.lang.String] to type [java.util.Map
启动注册中心Eureka Server之后启动Eureka Client,所有要进⾏注册的微服务通过 Eureka Client 连接到Eureka Server,完成注册。报错信息:可以看到后边说更新配置文件的配置,而后检查配置文件发现在配置defaultZone的时候后边没有加到空格,加上空格就解决了。还是粗心了eureka: client: ##注册中⼼的访问地址 service-url: defaultZone: http://localhost:8761.原创 2020-08-12 23:28:03 · 4185 阅读 · 0 评论 -
Dubbo与SpringCloud对比
DubboSpring Cloud服务注册中心ZookeeperSpring Cloud Netflix Eureka服务调用方式RPCREST API服务监控Dubbo-monitorSpring Boot Admin断路器不完善Spring Boot Netflix Hystrix服务网关无Spring Boot Netflix Zuul分布式配置无Spring Boot Config服务跟踪无Spring Boot ...原创 2020-08-12 14:43:39 · 174 阅读 · 0 评论