idea 学会看log文件

简介

在 help -> show Log in Explore
可以看到log文件
可以更具log文件查找错误

TIPS

maven的配置信息
主要配置两个信息
一个是镜像的配置
另一个是包目录的配置
setting.xml

<localRepository>D:codemaven_jar</localRepository>

    <mirror>
        <id>nexus-aliyun</id>
        <mirrorOf>*</mirrorOf>
        <name>Nexus aliyun</name>
        
        <url>https://maven.aliyun.com/repository/public</url>
    </mirror>

TIPS

推荐下载低版本的maven, 高版本的可能和idea不兼容.
在 file -> setting 中设置maven的目录,还有setting.xml的目录

Hope is a good thing,maybe the best of things,and no good thing ever dies.----------- Andy Dufresne
原文地址:https://www.cnblogs.com/eat-too-much/p/14631576.html