简介
本文记录idea中import相关配置:自动导入依赖、自动删除无用依赖、避免自动导入*包
自动导入依赖
在编辑代码时,当只有一个具有匹配名称的可导入声明时,会自动添加导入
File -> Settings -> Editor -> General -> Auto Import
勾选
-
Add unambiguous imports on the fly
自动删除无用依赖
删除未使用的导入,并根据代码样式设置重新排序导入配置
File -> Settings -> Editor -> General -> Auto Import
勾选
-
Optimize imports on the fly
避免自动导入*包
在编辑代码时,自动导入依赖,避免自动引入*包
File -> Settings -> Editor -> Code Style -> Java -> Imports
修改对应值
Class count to use import with '*'
Names count to use static import with '*'
结束