IntelliJ IDEA自动导入包去除星号(import xxx.*)

Default Settings>Editor>Code Style>Java>Imports

将Class count to use import with "*"改为99(导入同一个包的类超过这个数值自动变为 * )

将Names count to use static import with "*"改为99(这是静态导入的)

将Package to Use import with "*"删掉默认的这两个包(不管使用多少个类,只要在这个列表里都会变为 * )

原文地址:https://www.cnblogs.com/mufeng07/p/12447611.html