Loading class `com.mysql.jdbc.Driver‘. This is deprecated


Loading class `com.mysql.jdbc.Driver‘. This is deprecated

不同版本的jdbc驱动包应该使用不同的驱动类名
在这里插入图片描述

spring.datasource.driver-class-name=com.mysql.jdbc.Driver

改成:

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

IDEA 导包失效爆红

清理 IDEA 的缓存
点击清空 cache 后重启 IDEA
在这里插入图片描述


创建项目 Error: Cannot download 'https://start.spring.io/starter.zip?type=maven-project&bootVersion…

修改路径:

https://start.springboot.io/


bean 注入失败:org.springframework.beans.factory.BeanCreationException

检查发现 UserMapper.xml 中 resultType 写错


v-slot 爆红:is not bound

在这里插入图片描述

在这里插入图片描述


idea 无法输入中文

  • 方法一:界面配置
    路径:Help --> Edit Custom VM Options…
    最后一行加入以下命令:Drecreate.x11.input.method=true
    保存重启 IDEA

在这里插入图片描述

  • 方法二:修改配置文件
    找到 IDEA 安装目录,路径:安装目录 bin-idea64.exe.vmoptions,用文本编辑器打开,在最后一行添加上述命令,保存重启 IDEA

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_56884023/article/details/126333863
今日推荐