diff --git a/CHANGELOG.md b/CHANGELOG.md index fdbc23004..b5186e512 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ * 【core 】 ListUtil增加move方法(issue#3603@Github) ### 🐞Bug修复 +* 【core 】 修复AnnotationUtil可能的空指针错误 ------------------------------------------------------------------------------------------------------------- # 5.8.28(2024-05-29) diff --git a/hutool-core/src/main/java/cn/hutool/core/annotation/CombinationAnnotationElement.java b/hutool-core/src/main/java/cn/hutool/core/annotation/CombinationAnnotationElement.java index bfe8b8598..c11ec9482 100755 --- a/hutool-core/src/main/java/cn/hutool/core/annotation/CombinationAnnotationElement.java +++ b/hutool-core/src/main/java/cn/hutool/core/annotation/CombinationAnnotationElement.java @@ -1,6 +1,7 @@ package cn.hutool.core.annotation; import cn.hutool.core.map.TableMap; +import cn.hutool.core.util.ArrayUtil; import java.io.Serializable; import java.lang.annotation.Annotation; @@ -116,6 +117,10 @@ public class CombinationAnnotationElement implements AnnotatedElement, Serializa * @param annotations Class, Method, Field等 */ private void parseDeclared(Annotation[] annotations) { + if(ArrayUtil.isEmpty(annotations)){ + return; + } + Class annotationType; // 直接注解 for (Annotation annotation : annotations) { @@ -138,6 +143,10 @@ public class CombinationAnnotationElement implements AnnotatedElement, Serializa * @param annotations Class, Method, Field等 */ private void parse(Annotation[] annotations) { + if(ArrayUtil.isEmpty(annotations)){ + return; + } + Class annotationType; for (Annotation annotation : annotations) { annotationType = annotation.annotationType();