摘要:
1,isNotEmpty(str)等价于 str != null && str != "" && str.length > 0。 2,isNotBlank(str) 等价于 str != null && str != "" && str.length > 0 && str.trim().length 阅读全文
摘要:
public static void main(String[] args) { Xm xm = new Xm(); Resource resource = new ClassPathResource("applicationContext-common.xml"); BeanFactory fac 阅读全文