It is much more convenient and cleaner to use a single statement like
import java.awt.*;
than to import a bunch of individual classes
In DDD book
In whatever development technology the implementation will be based on, look for ways of minimizing the work of refactoring MODULES . In Java, there is no escape from importing into individual classes, but you can at least import entire packages at a time, reflecting the intention that packages are highly cohesive units while simultaneously reducing the effort of changing package names.
And if it clutters local namespace its not your fault - blame the size of the package.