Cannot create PoolableConnectionFactory (Access denied for user '计算机名'@'localhost' (using passwor...

今天做spring的配置,发现通过xml配置的mysql连接池都是正常的

    
        
        
        
        
    

但是将值放进properties时就会报标题上的错误

driverClassName=com.mysql.jdbc.Driver
url=jdbc:mysql:///testdb
username=root
password=123456

    
        
        
        
        
    

试了几次xml取的值除了username其他都是对的,查了一下发现是username被解析成主机名了,导致用户名一直不对。把username改成别的字符串就可以了(jdbc.username)

jdbc.username=root

你可能感兴趣的:(Cannot create PoolableConnectionFactory (Access denied for user '计算机名'@'localhost' (using passwor...)