org.springframework.util 包位于springframework-core-XXX.jar 包类
Assert类
Assert工具类用于检查参数。当参数不合法的时候,扔出IllegalArgumentException异常.
Assert.notNull(clazz, "The class must not be null");
Assert.isTrue(i > 0, "The value must be greater than zero");
org.springframework.util 包位于springframework-core-XXX.jar 包类
Assert类
Assert工具类用于检查参数。当参数不合法的时候,扔出IllegalArgumentException异常.
Assert.notNull(clazz, "The class must not be null");
Assert.isTrue(i > 0, "The value must be greater than zero");