SSM报错java.sql.SQLException: Access denied for user 'Administrator'@'localhost' (using password: YES)
程序员文章站
2022-05-23 11:07:27
...
错误日志
错误代码
applicationContext.xml(只有数据库连接那部分代码):
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!--引入外部配置文件(properties等文件-->
<context:property-placeholder location="classpath:jdbc.properties"/>
<!-- 配置数据源 -->
<bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource">
<!--数据库连接驱动-->
<property name="driverClassName" value="${driver}"/>
<!--数据库连接URL-->
<property name="url" value="${url}"/>
<!--数据库登录用户名-->
<property name="username" value="${username}"/>
<!--数据库登录密码-->
<property name="password" value="${password}"/>
<!-- 初始化连接数 -->
<property name="initialSize" value="${initialSize}"/>
<!-- 最大连接数 -->
<property name="maxTotal" value="${maxActive}"/>
<!-- 最大空闲连接数 -->
<property name="maxIdle" value="${maxIdle}"/>
</bean>
</beans>
jdbc.properties
# 数据库驱动
driver=com.mysql.jdbc.Driver
# 连接URL
url=jdbc:mysql://localhost:3306/db_springmvc_demo?characterEncoding=utf8&useSSL=false
# 数据库的用户名
username=root
# 数据库的密码
password=admin
# 定义初始连接数
initialSize=5
# 定义最大连接数
maxActive=20
# 定义最大空闲
maxIdle=20
# 定义最小空闲
minIdle=1
# 定义最长等待时间
maxWait=60000
原因
可能是username这个变量名和某个系统定义的冲突了。
解决
将username替换成其他的如user等。
正确代码
applicationContext.xml(只有数据库连接那部分代码):
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!--引入外部配置文件(properties等文件-->
<context:property-placeholder location="classpath:jdbc.properties"/>
<!-- 配置数据源 -->
<bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource">
<!--数据库连接驱动-->
<property name="driverClassName" value="${driver}"/>
<!--数据库连接URL-->
<property name="url" value="${url}"/>
<!--数据库登录用户名-->
<property name="username" value="${user}"/>
<!--数据库登录密码-->
<property name="password" value="${password}"/>
<!-- 初始化连接数 -->
<property name="initialSize" value="${initialSize}"/>
<!-- 最大连接数 -->
<property name="maxTotal" value="${maxActive}"/>
<!-- 最大空闲连接数 -->
<property name="maxIdle" value="${maxIdle}"/>
</bean>
</beans>
jdbc.properties
# 数据库驱动
driver=com.mysql.jdbc.Driver
# 连接URL
url=jdbc:mysql://localhost:3306/db_springmvc_demo?characterEncoding=utf8&useSSL=false
# 数据库的用户名
user=root
# 数据库的密码
password=admin
# 定义初始连接数
initialSize=5
# 定义最大连接数
maxActive=20
# 定义最大空闲
maxIdle=20
# 定义最小空闲
minIdle=1
# 定义最长等待时间
maxWait=60000
推荐阅读
-
MySQL密码正确却无法本地登录-1045 Access denied for user 'root'@'localhost' (using password:YES
-
Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决
-
java访问数据库被拒绝,不能连接数据库ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
-
Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决方法
-
ERROR 1045 (28000): Access denied for user ''root''@''localhost'' (using password: YES)实用解决方案
-
Access denied for user 'root'@'localhost' (using password:YES) Mysql5.7
-
Eclipse使用jdbc连接MySql数据库报:java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES)
-
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
-
Web项目打成war包部署到tomcat时报MySQL Access denied for user 'root'@'localhost' (using password: YES)错误解决方案(推)
-
【转】Access denied for user 'root'@'localhost' (using password:YES) 解决方案