Mybatis中java.sql.SQLException: Access denied for user root@localhost的报错 配置出错 空格问题

同网上说的,错误一般就是配置文件的错误,要么就是属性名错了,要么就是sql配置的打错了,但db.properties有个巨坑,就是配置中空格也算在里面但显示不出来,我在jdbc.password=123456密码配置中最后无意打了个空格,最后花了好长时间以为是其他地方错了,醉了

org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES)
### The error may exist in com/it/mapper/CustomerMapper.xml
### The error may involve com.it.mapper.CustomerMapper.findCustomerById
### The error occurred while executing a query
### Cause: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES)

 

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
在Spring Boot整合Mybatis-Plus多数据源时,出现“Access denied for user 'root'@'localhost' (using password: NO)”错误,可能是因为配置文件的密码没有正确识别。可以尝试以下解决方法: 1.检查配置文件的密码是否正确,特别是在使用yml文件时,需要注意缩进和格式是否正确。 2.在配置文件明确指定使用的数据源,例如: ```java @Configuration @MapperScan(basePackages = "com.example.demo.mapper") public class DataSourceConfig { @Bean(name = "dataSource1") @ConfigurationProperties(prefix = "spring.datasource.ds1") public DataSource dataSource1() { return DataSourceBuilder.create().build(); } @Bean(name = "dataSource2") @ConfigurationProperties(prefix = "spring.datasource.ds2") public DataSource dataSource2() { return DataSourceBuilder.create().build(); } @Bean(name = "dynamicDataSource") public DynamicDataSource dynamicDataSource(@Qualifier("dataSource1") DataSource dataSource1, @Qualifier("dataSource2") DataSource dataSource2) { Map<Object, Object> targetDataSources = new HashMap<>(); targetDataSources.put(DataSourceEnum.DATA_SOURCE1.getValue(), dataSource1); targetDataSources.put(DataSourceEnum.DATA_SOURCE2.getValue(), dataSource2); return new DynamicDataSource(dataSource1, targetDataSources); } } ``` 3.检查数据库用户的权限是否正确,可以使用以下命令修改密码: ```sql USE mysql;#mysql配置库 ALTER USER root@localhost IDENTIFIED BY 'newpasswd3'; # 修改密码 ```
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值