码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2017-06-26 18:58:44      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:bean   连接   配置   ring   localhost   环境变量   sys   ide   password   

在Spring容器中通过配置 <context:property-placeholder location="classpath:/jdbc.properties"/> 调用properties数据源配置文件时出现 Access denied for user ‘Administrator‘@‘localhost‘ (using password: YES) 错误!!!!

Properties配置(C3p0数据源):

dirver=com.mysql.jdbc.Driver
jdbcUrl=jdbc:mysql://localhost:3306/mydb1
username=root
password=admin

Spring基本配置(完成注入):

<context:property-placeholder location="classpath:/jdbc.properties"/>

<bean id="datasouce" class="com.mchange.v2.c3p0.ComboPooledDataSource">
    <property name="driverClass"  value="${dirver}"/>
    <property name="jdbcUrl" value="${jdbcUrl}"/>
    <property name="user" value="${username}"/>
    <property name="password" value="${password}"/>
</bean>

---- 在获取数据源中的连接时出现上述的错误。

 

解决方案:

  方案一:将properties文件中的username换成user或其他就字符串就可以成功获取连接访问数据库。

  方案二:在Spring配置文件中修改成:<context:property-placeholder location="classpath:/jdbc.properties" system-properties-mode="FALLBACK / NEVER"/>   

      添加一个system-properties-mode属性

      该属性有三个值:FALLBACK  --- 默认值,不存在时覆盖

              NEVER      --- 不覆盖

              OVERRIDE  --- 覆盖

 

到现在我还未明白导致这个错误的具体原因。经过百度解释说是环境变量覆盖了Properties中的值,在Spring完成注入时是用 "${..}"  方式获取值完成注入的。而通过这种表达式也能直接获取到JVM系统属性..........

 

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

标签:bean   连接   配置   ring   localhost   环境变量   sys   ide   password   

原文地址:http://www.cnblogs.com/tongxuping/p/7081656.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!