0%

SpringBoot入门遇到的问题(一)

JDK版本替换

https://blog.csdn.net/qq_34584049/article/details/80619338

Unable to import maven project: See logs for details

http://maven.apache.org/docs/history.html

idea是2017的,用的maven3.6.2不行,要下载maven3.5.0才行

IntelliJ IDEA 中 右键新建时,选项没有Java class

https://blog.csdn.net/qq_27093465/article/details/52912444

IDEA卡在Downloading maven plugins

更换阿里源

程序包org.springframework.stereotype不存在

https://blog.csdn.net/weixin_44104367/article/details/100732699

java.sql.SQLException: Access denied for user ‘root‘@’localhost’ (using password: YES)

yml是区分数据类型的,所以如果用户名或者密码是数字的话,就要小心了。所以如果password为000000的话,最终获取到的值是0,显然不对,那么6个0怎么表示呢?只能用字符串”000000”

在连接数据库时,有Mysql报错:MySQL ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
于是在cmd下登录mysql也出现了同样的错误,所以得出结论:不是代码的问题,可能是配置环境的问题

https://segmentfault.com/a/1190000015678751

唉 还要复习sql语句。