自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(64)
  • 收藏
  • 关注

原创 Use SSL when communicating with the server, default is “true“ when connecting to MySQL 5.5.45+, 5.6.

将useSSL 改成False选项。

2025-01-23 20:28:11 187

原创 “Content type ‘text/plain;charset=UTF-8‘ not supported“,

点击Headers我们看到Content-Type 支持的类型是json。Content type 'text/plain 不支持。所以问题出现在这个地方,要将Text切换成JSON。

2024-12-21 16:47:46 965

原创 org.springframework.cloud.config.server.environment.FailedToConstructEnvironmentException: Could not

问题就出在这里: user-dev.yml是yml文件,而配置文件的内容是properties格式。码云仓库的服务提供者的配置文件 user-dev.yml里面的内容改成yml格式后问题解决。配置中心配置文件 格式正确没有任何问题。

2024-08-22 18:40:32 261

原创 NoResourceFoundException: No static resource user/findById.

仔细检查了一下路由转发规则,发现转发的地址、拦截规则都都对,唯一的异常提示的地方就是routes这个位置高亮,发现gateway 4.1.5 是这个spring.cloud.gateway.mvc.routes 格式。小伙伴在学习gateway的时候遇到这个问题,来求助我,通过网关端口访问,直接跳转到微服务提供的服务。又看了一下gateway的版本是4.1.5。

2024-08-20 14:59:59 2239

原创 pom.xml不是m标志

右点击鼠标,

2024-08-09 17:03:38 322

原创 java.net.ConnectException: Connection refused: no further information

检查了Controller、Service、Mapper层的方法后都没有问题,又检查了一下配置文件中的数据源地址和启动,账号、密码后,都没有问题,最后发现时数据库MySQL没有启动。MyBatis是创建Springboot项目时利用SpringbootInitializr勾选的,MyBatis系统不会有问题。Servlet.service请求调度的时候抛出异常:根本原因是:请求处理失败:MyBatis系统异常。既然是微服务项目,又是连接异常肯定是各个服务之间的连接异常或服务提供者与数据库之间的异常。

2024-08-02 19:56:40 1714

原创 java.net.URISyntaxException: Expected scheme-specific part at index 16: DESKTOP-7VNP9K8:

URI Syntax Exception URI语法异常。这个时候就要考虑代码中url请求地址有错。检查代码发现少了http://

2024-08-02 17:10:26 238

原创 private DiscoveryClient discoveryClient 爆红

File-Settings - Editor - Inspections - Spring - Spring Core - Code - Autowiring for Bean Class - 把√去掉。private DiscoveryClient discoveryClient 爆红。但有个特殊情况导包没有导错,discoveryClient依然爆红。虽然discoveryClient爆红,但是不影响程序的运行。大部分情况是因为导错了包,导成了下面的包。

2024-08-01 15:50:34 221

原创 org.yaml.snakeyaml.error.YAMLException: java.nio.charset.MalformedInputException: Input length = 2

解决方式一:到File-Settings-File Encodings中 将yml文件的编码格式改成UTF-8。解决方式二:将application.yml改成application.properties。

2024-07-31 20:06:41 173

原创 【无标题】Factory method ‘configurationPropertiesBeans‘ threw exception with message: org/springframework

既然springboot用的是3.3.2版本,那springcloud 用2023.0.2就好,2023.0.3也行。之所以报这样的错就是因为springboot的版本和spirngcloud的版本不匹配造成的,根据官方的springcloud和springboot的依赖对照表,这个两个完全不匹配呀,springcloud:Greenwich对应 springboot 2.1.x。这是springcloud的依赖坐标。这是springboot的依赖坐标。

2024-07-31 10:07:22 562

原创 There was an unexpected error (type=Not Found, status=404).No static resource consumer/2.

SpringBootApplication注解其实是三个注解的整合,三个注解中其中一个注解是@ComponentScan指定默认扫描包的路径为启动类本包及子包;2,检查Controller类是否在springboot的启动类的同级目录或者子目录下(SpringBoot默认扫描的范围为本包及子包)@SpringBootApplication 指定扫描本包及其子包,@ConmponentScan 再额外指定扫描其他的包。3,可以指定启动类上添加注解@ComponentScan指定扫描的包路径。

2024-07-29 10:45:30 658

原创 javax.net.ssl.SSLHandshakeException: No appropriate protocol (protocol is disabled or cipher suites

在application.properties配置文件中,spring.datasource.url后面的地址中一定要添加上useSSL=false.原因就在这datasource.url中。原因就在于jdk版本的问题。

2024-07-27 22:38:15 202

原创 com.mysql.cj.jdbc.Driver 爆红

出现这样的问题就是pom.xml文件中没有添加数据库依赖坐标。添加上这个依赖即可,添加完后重新加载一下Maven即可。

2024-07-26 16:17:41 460

原创 spring-boot-maven-plugin 爆红

添加版本号即可 版本后同项目的springfrmework.boot的版本号即可。

2024-07-25 15:58:34 137

原创 Cannot access org.springframework.context.ConfigurableApplicationContext

SpringApplication.run曝红。

2024-07-25 15:43:23 231

原创 Property ‘spring.profiles‘ imported from location ‘class path resource [application.yml]‘ is invali

Property 'spring.profiles' imported from location 'class path resource [application.yml]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: class path resource [application.yml] - 15:18]原先的application.yml:#激活多环境配置文件中的一个,

2024-06-14 14:35:01 893

原创 Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future

Enable lauch optimization 勾选去掉!

2024-06-14 11:37:55 224

原创 Driver com.mysql.cj.jdbc.Driver claims to not accept jdbcUrl, jdbc mysql://127.0.0.1:3306/360?useUni

遇到异常时,大家一定要看清楚控制面板里的异常提示,根据异常提示去解决问题。数据库连接驱动声称不接受jdbcUrl,肯定是jdbcUrl有问题,注意此处千万不要加空格,加了空格会报错。加上冒号:后,问题解决。

2024-06-10 22:14:18 573 1

原创 Could not find artifact org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:3.3.0 in central

在maven2中央仓库找不到mybatis-spring-boot-starter ,原来是版本好不小心被我改了,输入正确的版本号即可。

2024-06-10 12:45:10 1414

原创 java file outside of source root Java主类没法启动

2024-03-26 22:17:51 287

原创 关于mysql无法添加中文数据的问题以及解决方案

出现这样的问题就是在创建数据库时 数据库字符集 没有选择uft8, 数据库校对规则没有选择utf8-bin。也可以用鼠标选中你的数据库,有单击鼠标,选择---更改数据库,就会看到数据库字符集和数据库校对规则都不对。可以查看你的这个数据库的定义规则。重启数据库,这个时候你发现原先的这个表插入数据还是没有卵用。把数据库字符集和数据库校对规则 分别改成 utf8 utf8_bin。归根结底 创建数据库时 没有选择 utf8 和utf8_bin。往数据库表插入语句时,插入中文字段,中文直接变成?

2024-03-20 16:01:52 703

原创 TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2

通过selecet one 想要得到一个结果,结果发现数据库里有两个结果。原因就是数据库中有重复的数据。

2024-03-11 19:58:24 240

原创 connection SQLException, url:jdbc ,errorCode 0, state 08S01

添加:&useSSL=false。

2024-03-11 19:39:57 544

原创 测试号管理,接口配置信息,配置失败的问题

但是每次提交信息后,在IDEA上输出来的微信服务器发过来的签名和我开发者服务器通过sha1加密算出来的签名完全一样的,说明我填写的URL 地址和 Token以及写的代码没有错误,看了一眼,写着:另请注意,微信公众号接口必须以http://或https://开头,分别支持80端口和443端口。于是我果断注册花生壳,用花生壳后,发现它APP上直接写着https:// 指定支持443端口,验证微信服务器有效性时,在接口配置信息页面一提交信息,就显示配置失败,我之前下载ngrok,页面显示非常简单,

2023-10-20 17:05:14 2192

原创 ERR_NGROK_108

在电脑里找到这个文件,将这个文件ngrok.yml删除!Ngrok闪退,并且 报108错误,

2023-10-17 19:38:16 925

原创 可牛办公卸载的方法

首先在桌面上右单击可牛办公的快捷方式,找到可牛办公在电脑里面的目标位置,然后在木匾位置所在的文件夹里搜索关键词officetemplate。将这个应用程序删除,

2023-03-14 11:23:14 11900 5

原创 Cannot run program “D:\JDK\bin\java.exe“ (in directory “C:\Program Files\JetBrains\IntelliJ IDEA 202

Cannot run program "D:\JDK\bin\java.exe" (in directory "C:\Program Files\JetBrains\IntelliJ IDEA 2022.2.3\bin"): CreateProcess error=2, 系统找不到指定的文件。

2023-03-14 09:55:32 19576 5

原创 Java中变量的分类——成员变量、局部变量

一文道破成员变量和局部变量

2022-09-23 22:14:07 790

原创 packaging‘ with value ‘jar‘ is invalid. Aggregator projects require ‘pom‘ as packaging.

'packaging' with value 'jar' is invalid. Aggregator projects require 'pom' as packaging.打包方式为jar包的打包方式无效,多模块项目需要POM的打包方式第二个箭头的地方指明了出问题的地方,The project com.changgou:changgou_web:1.0-SNAPSHOT (C:\JavaProject\07changgou_class\changgou_parent_3622\chan.

2022-01-06 02:31:40 6765 1

原创 Could not autowire.No beans of ‘ConnectionFactory‘ type found

Could not autowire.No beans of 'ConnectionFactory' type found错误的原因主要在于导错包正确的包,应该为import org.springframework.amqp.rabbit.connection.ConnectionFactory;

2021-12-28 11:38:11 4468

原创 java.lang.Exception: No runnable methods

错误在这里,主要原因是因为导错包正确的包,应该是这个如果对你有帮助,麻烦点个赞

2021-12-22 19:06:15 279

原创 ElasticsearchException: failed to map source XXX to class XXXX

ElasticsearchException: failed to map source XXXto class XXXX出现这种情况原因就是实体类中缺少空参构造在实体类中,添加空参构造即可如果对你有用,麻烦顺手点个赞

2021-12-19 21:12:31 417

原创 Invalid cluster node 127.0.0.1.9300 in 127.0.0.1.9300 Must be in the format host

Invalid cluster node 127.0.0.1.9300 in 127.0.0.1.9300! Must be in the format host:port! 错误在此:应该为:

2021-12-18 23:47:18 7999

原创 org.springframework.cloud.config.server.environment.NoSuchLabelException: No such label: main

在使用springcloud的配置中心的配置文件时,会遇到这样的情况:org.springframework.cloud.config.server.environment.NoSuchLabelException: No such label: main,虽然不影响程序的运行,但是对我一个追求完美的程序员来说,有点这样的小bug也实在看不下去。因为默认的标签是main, 而我们在配置文件中配置的标签不是main,所以就会报这样的小bug.我们只需要把默认的label,改成我们在配置文件中.

2021-12-11 18:01:09 2744 1

原创 Failed to introspect Class [org.springframework.cloud.gateway.config.GatewayAutoConfiguration$NettyC

Failed to introspect Class [org.springframework.cloud.gateway.config.GatewayAutoConfiguration$NettyConfiguration] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2]Error processing condition on org.springframework.cloud.gateway.config.GatewayAu

2021-12-07 10:33:05 5966 4

原创 @HystrixCommand 曝红

在pom.xml导入如下依赖即可<dependency> <groupId>com.netflix.hystrix</groupId> <artifactId>hystrix-javanica</artifactId> <version>RELEASE</version></dependency>如果对你有帮助,请点个赞!!!...

2021-12-04 12:23:09 499

原创 Could not autowire. No beans of ‘DiscoveryClient‘ type found.

导错包所致,正确的导包:

2021-12-03 16:51:43 303

原创 spring-boot-maven-plugin 曝红的问题

加上版本号,与Springboot的版本号相同即可

2021-11-24 20:48:38 203

原创 No provider available from registry 127.0.0.1:2181 for service com.itheima.service.ReportService on

No provider available from registry 127.0.0.1:2181 for service com.itheima.service.ReportService on consumer 192.168.181.1 use dubbo version 2.6.2, please check status of providers(disabled, not registered or in blacklist).落下了:@Service...

2021-11-21 06:47:01 1536 1

原创 运行时异常:org.springframework.security.access.AccessDeniedException: Access is denied

在项目中集成spring-security安全框架时,运行时异常:org.springframework.security.access.AccessDeniedException: Access is denied在每个axios请求之前加上这句话后就好了 //允许携带认证cookies,axios.defaults.withCredentials=true;...

2021-11-15 18:48:16 707

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除