解决idea爆问题: The file size exceeds configured limit . Code insight features are not available.

目录

问题描述       

修改idea代码编译的长度

        1、找到菜单help->help-->Edit Custom Properties...

         2、重新启动Idea编辑器


问题描述        

        在使用idea 进行Java开发的时候,爆出了The file size(2.59MB) exceeds configured limit(2.56MB) . Code insight features are not available。这是idea告诉我们:我们idea编译的Java单个文件代码,超过了我们默认限定的长度(2.56M),在这里需要将我们编译代码文件的限定长度进行修改。

       idea启动的时候会自动编译我们工程的Java文件,如果单个文件超过我们默认的2.56M的最大单个文件,会造成的结果是在idea启动的时候无法自动编译该文件,那么依赖该代码的工程自然也无法编译,出现爆红。

类如图:

        解决idea爆问题: The file size exceeds configured limit . Code insight features are not available._第1张图片


修改idea代码编译的长度

        1、找到菜单help->help-->Edit Custom Properties...

        添加如下内容:

         设置单个智能编译文件最大为10000KM=10MB

#单位是KB

idea.max.intellisense.filesize=10000

         2、重新启动Idea编辑器

这样就完成了

你可能感兴趣的:(工作笔记,java,idea,intellij-idea,java,ide)