• 【坑的没脾气】Access denied for user ''@'localhost' (using password: NO)


    出了问题,先根据提示仔细检查,再去百度。【敲黑板:因为很有可能因为粗心碰到的问题百度到的只是类似的,而不一样,那样排查起来更费时!!】

    这次问题就在于,不要轻易相信IDEA的自动填充!!!

    ----------------正确--------------
    spring:
      datasource:
        driver-class-name: com.mysql.cj.jdbc.Driver
        url: jdbc:mysql://localhost:3306/tensquare_article?characterEncoding=utf-8
        username: root
        password: 123456
    
    ---------------错误-------------------
    spring:
      datasource:
        driver-class-name: com.mysql.cj.jdbc.Driver
        url: jdbc:mysql://localhost:3306/tensquare_article?characterEncoding=utf-8
        username: root
        data-password: 123456   #自动填充的是 data-password  然后就using password: NO
  • 相关阅读:
    poj 1010
    poj 1060
    poj 1001
    POJ 2769
    POJ 2559
    poj 2403
    POJ 1088
    设置全屏与退出全屏
    iframe 父子页面方法调用
    Web 前端面试小知识
  • 原文地址:https://www.cnblogs.com/HuangK-HUST/p/12722031.html
Copyright © 2020-2023  润新知