Spring容器使用中出现 Access denied for user 'Administrator'@'localhost' (using password: YE

Posted xss512

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring容器使用中出现 Access denied for user 'Administrator'@'localhost' (using password: YE相关的知识,希望对你有一定的参考价值。

Access denied for user ‘Administrator‘@‘localhost‘ (using password: YES)一个问题找原因找了很久,终于找到了

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

技术图片

Properties配置:

技术图片

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

技术图片

 

错误原因:

  在系统中也有个username属性,这时系统变量覆盖了Properties中的值,这时取得username的值为系统的用户名Administrator,密码为properties中的password去查询数据库,此时用户名名和密码并不匹配就会报错。在Spring完成注入时是用 "${..}"  方式获取值完成注入的。而通过这种表达式也能直接获取到JVM系统属性..........

解决方案:

  方案一:将properties文件中的username换成user或其他就字符串就可以成功获取连接访问数据库。建议:username时敏感词汇,为了安全起见还是尽量不要使用username。

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

      添加一个system-properties-mode属性

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

              NEVER      --- 不覆盖

              OVERRIDE  --- 覆盖

 技术图片

 

以上是关于Spring容器使用中出现 Access denied for user 'Administrator'@'localhost' (using password: YE的主要内容,如果未能解决你的问题,请参考以下文章

使用微信airkiss配置网络出现system:access_denied

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

为啥微信支付出现access_denied

无法上传文件出现550 Access is denied错误

steam商店出现Access Denied是啥个意思

spring security异常记录:org.springframework.security.access.AccessDeniedException: Access is denied