Access denied for user 'Administrator'@'localhost' (using password: YES)


1.错误说明

使用Spring容器加载连接数据库的各种配置时,jdbc.properties中的设置连接数据库的用户名变量不能使用”username“,这种方式会注入自己的系统环境变量的用户名

 2.解决方法

将username换为其他变量名即可


    class="com.mchange.v2.c3p0.ComboPooledDataSource">
        
        
        
        
    

相关