The method isEmpty(String) is undefined for the type StringUtils解决办法

在myecplise开发spring项目是出现

The method isEmpty(String) is undefined for the type StringUtils解决办法

把导入的//import org.springframework.util.StringUtils; 

改成 

import org.apache.commons.lang.StringUtils;

注:需要导入org.apache.commons的commons-lang3

maven导入方法

在pop.xml配置文件中添加

 
           
            org.apache.commons  
            commons-lang3  
            3.1  
       
 
 


你可能感兴趣的:(web服务)