RestTemplate注入有问题 新版的需要这样注入: @Bean @LoadBalanced RestOperations restTemplate(RestTemplateBuilder builder) { return builder.build(); } @Autowired RestOperations restTemplate; package com.csi.order; import org.springframework.boot.SpringApplication; im…
今天在配置eureka集群时,SpringCloud报错如下: Caused by: org.yaml.snakeyaml.parser.ParserException: while parsing MappingNode 解决方案: 1.网上大多数都是说节点重复了.yml配置文件里面有相同的节点.检查后把对应的节点删除/修改即可. 2.本人检查了很久,并没有发现节点重复.于是,将yml配置文件改为properties文件. 发现是yml文件中的配置没有按格式对齐.修改成properties文件…
今天启动用eureka的服务消费者时,一直出现问题. SpringCloud报错: Caused by: org.springframework.context.ApplicationContextException: Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFactory bean. 解决方案: 网上的解决方案大多如下: 1.在main()方法的启动类的上方添加注解…
SpringCloud报错: "Field discoveryClient in com.controller.DcController required a bean of type 'com.netflix.discovery.DiscoveryClient' that could not be found." 解决方案: Discovery的包有两个,导入 org.springframework.cloud.client.discovery.DiscoveryClient才是正确…
首先一点,WebRoot目录下的文件是都可以通过浏览器输入路径,直接读取到的 例如这样: 而WebRoot下面WEB-INF是无法浏览器输入路径直接读取的. 因为是受保护的. 如果jsp读取一个图片的话. jsp在WebRoot/jsp下 图片在WebRoot/imag下 那么就要../imag/xx.jpg获取相对路径. 因为servlet程序是无法读取C:\xx\xx\xx这样的绝对路径的. 除非更改tomcat配置文件,但我觉得那样完全没有意义. 另外,要注意你请求的路径是否被拦截. 例如…
问题:使用xcode10打包报错,提示 error:Multiple commands produce ‘xxxx/xxx.app’ 1)Target ‘xx’ has create directory command with output ‘xxxxxxx' 2)That command depends on command in Target ‘xxx’:scrpit phase"[CP] Copy Pods Resources"   解决方法:将pod升级到1.4.0以上 原因…
自动化上传图片,路径driver.find_element_by_id("oper-img-change").send_keys("C:\\Users\\76776\\Pictures\\logo.jpg"),为争取姿势,单\报错 'unicodeescape' codec can't decode bytes in position XXX: trun…
今天学习python基础—分支与循环,接触到了if.在练习一个if语句的时候,出现了错误. 题目是: 根据分数划分成四个级别:优秀.良好.及格.不及格,分数是72: grade = 72if grade >= 90: print('优秀')elif grade >=70: print('良好')elif grade >=60: print('及格')else: print('不及格')   这种情况下没有报错,打印出:良好.     然后我就想换一种方法,把前几天学到的input也用进去…
今天在做springcloud链路追踪的时候,报错java.lang.IllegalStateException: Service id not legal hostname (/a-service) 整合网上的其他原因,大致有两个 application.yml 文件中spring.application.name=a-service,不要使用下划线,用"-" 在@FeignClient注解上去掉"/"…
springcloud启动报错Connection refused: connect 参考:https://blog.csdn.net/deemo__/article/details/78932401 SpringCloud异常(Euruka):Application run failed java.lang.NoSuchMethodError: org.springframework.boot.builder.SpringApplicationBuilder 参考:https://www.cn…