一、IDEA 提示 @override is not allowed when implement interface method
解决办法:

pom中maven编译插件指定jdk版本(>=1.6),如:

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
            <source>1.8</source>
            <target>1.8</target>
        </configuration>

    </plugin>


二、maven依赖的jar包变更了,IDEA提示报错(mvn打包却一切正常)

解决办法:

IDEA 常见问题解决


三、IDEA经常卡死

解决办法:1、增加内存参数的值 2、去除一些插件支持

1、

IDEA 常见问题解决

IDEA 常见问题解决


2、

IDEA 常见问题解决


四、IDEA-从外部导入的项目没有被git/svn版本管理

解决办法: 打开Version Controller,重新将项目添加至“版本控制”中

IDEA 常见问题解决


相关文章: