问答详情
源自:4-8 DAO层单元测试编码和问题排查(上)

按要求写好只好出错Access denied for user

按照老师的那些做法写好之后运行了一下却发现发生以下的错误:

java.sql.SQLException: Access denied for user 'SighFate'@'localhost' (using password: YES)

但是我在配置jdbc的时候却是以下的配置:

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/seckill?useUnicode=true&characterEncoding=UTF8
username=root
password=root

有人能告诉我为什么会发生这样的事情,还有应该怎么解决吗?

提问者:seederland 2016-05-13 17:37

个回答

  • Terminalist
    2016-05-28 14:05:06
    已采纳

    jdbc.driverClassName=com.mysql.jdbc.Driver
    jdbc.url=jdbc:mysql://localhost:3306/seckill?useUnicode=true&characterEncoding=utf8
    jdbc.username=root
    jdbc.password=708242

    写成这样!

  • 金小荣她老公
    2016-08-08 23:42:18

    你们好牛逼,我搞了一个晚上,网上各种搜不行,忽然看到这边的问答,66666

  • xulianzhen
    2016-05-29 14:08:19

    楼上正解,还有一种解决方案:

    把spring-dao.xml的xsd文件换掉:
    <?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:context="http://www.springframework.org/schema/context"
         xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-3.0.xsd">

  • WesleyWong
    2016-05-16 11:24:25

    换个数据库连接池

  • seederland
    2016-05-13 17:40:09

    已经有类似的问题了,我按照提示中去做。现在已经成功了。。