欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

davinci启动过程中的坑

程序员文章站 2022-03-04 15:03:54
...

1、设置MainClass 首先,在configuration中配置好Spring boot配置:
davinci启动过程中的坑
            
    
    博客分类: java
2、“程序包com.sun.tools.javac.util不存在” 问题解决 打开 File -> Project Structure引入tools.jar .


3、连接mysql出现Unable to load authentication plugin 'caching_sha2_password' 登陆mysql成功之后输入:       
alter user 'root'@'localhost' identified by 'root' password expire never; alter user 'root'@'localhost' identified with mysql_native_password by 'root';
flush privileges;