Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
似乎 org.apache.commons.collections.CollectionUtils 不再包含 isEmpty() 。
是否还有其他包含相同功能的“通用”库?
问题是版本。导入的是 3.1,isEmpty() 是从 3.2 可用的。解决方案:
<dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.2</version> </dependency>