Warning:() ‘isEmpty(java.lang.Object)‘ is deprecated . StringUtils.isEmpty

使用springframe的 StringUtils 提示 Warning:() 'isEmpty(java.lang.Object)' is deprecated

isEmpty方法废弃了。

参考:

Deprecate `StringUtils.isEmpty(Object)` and replace remaining usage (e.g. with `ObjectUtils.isEmpty`) · Issue #25945 · spring-projects/spring-framework · GitHub

如下:可能会有隐藏bug:

With static imports code like this looks perfectly fine:

        List<String> data = ...

        if (isEmpty(data)) {

But if the import has StringUtils.isEmpty the condition above will not work correctly for empty List introducing a hidden, difficult to spot bug.

If you are really keen on keeping this method it would be better to rename it to isEmptyString to at least make the error more obvious. (I believe this name also matches the method intention better than generic isEmpty.)

But with the #17710 in place I do not think StringUtils.isEmpty(Object) is still needed. And should probably be deprecated and eventually removed.

  如上所示,StringUtils.isEmpty()可能会导致一个隐藏bug。

Replace deprecated StringUtils.isEmpty() by ObjectUtils.isEmpty() and cover its usage with tests jhipster/generator-jhipster#13369

可以使用ObjectUtils.isEmpty(Object) 方法替换StringUtils.isEmpty()就可以。

ObjectUtils.isEmpty 代码如下:兼容了各种场景使用比较方便

    public static boolean isEmpty(@Nullable Object obj) {
        if (obj == null) {
            return true;
        } else if (obj instanceof Optional) {
            return !((Optional)obj).isPresent();
        } else if (obj instanceof CharSequence) {
            return ((CharSequence)obj).length() == 0;
        } else if (obj.getClass().isArray()) {
            return Array.getLength(obj) == 0;
        } else if (obj instanceof Collection) {
            return ((Collection)obj).isEmpty();
        } else {
            return obj instanceof Map ? ((Map)obj).isEmpty() : false;
        }
    }

参考:

Deprecate `StringUtils.isEmpty(Object)` and replace remaining usage (e.g. with `ObjectUtils.isEmpty`) · Issue #25945 · spring-projects/spring-framework · GitHub

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值