一文配好mybatis。java.sql.SQLException: Access denied for user ‘root‘@‘localhost‘ (using password: YES)

摘要:该文适用于黑马Javaweb项目的配置,用到mybatis配置数据库连接,用到mapper接口和其xml文件连接数据库

问题描述

数据库连接问题,显示密码错误,无法连接数据库

Caused by: 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/itheima/mapper/BrandMapper.xml
### The error may involve com.itheima.mapper.BrandMapper.selectByPageAndCondition
### The error occurred while executing a query
### Cause: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES)
 


原因分析:

连接数据库的密码错误

### Cause: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES)

mybatis-config.xml的配置错误,1处值与你自己的配置不一样

 


解决方案:

进入mybatis-config.xml查看代码

把username和password的value值改成你自己设置的值就可以解决了

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
    <typeAliases>
        <package name="com.itheima.pojo"/>
    </typeAliases>

    <environments default="development">
        <environment id="development">
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
                <property name="driver" value="com.mysql.cj.jdbc.Driver"/>
                <property name="url" value="jdbc:mysql:///db1?useSSL=false"/>
                <property name="username" value="root"/>
                <property name="password" value="root"/>
            </dataSource>
        </environment>
    </environments>
    <mappers>
       <!--扫描mapper-->
        <package name="com.itheima.mapper"/>
    </mappers>
</configuration>

注:

1.driver属性中可能有问题                                   (影响不大,但建议修改)

com.mysql.jdbc.Driver 是 mysql-connector-java 5版本以下的,
com.mysql.cj.jdbc.Driver 是 mysql-connector-java 6版本以上的。

2.url的值为 :            jdbc:mysql:///数据库架构名称?useSSL=false

我的数据库是这个样子的:要用db1下的表url配置就是jdbc:mysql:///db1?useSSL=false

 

 

在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'; # 修改密码 ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值