關(guān)于Spring中一些值得學(xué)習(xí)的工具類
Spring(和 Spring Boot) 提供了非常多實用的工具類,考慮到當(dāng)前 Spring 已經(jīng)成為 Java EE 開發(fā)的事實標準,學(xué)習(xí) Spring 的工具類并將其運用到開發(fā)中是非常有意義的,特別是對于各種反射操作。下面列舉了一些我認為值得學(xué)習(xí)的工具類,其中每一個一級列表項為項目名稱:
spring-boot:
org.springframework.boot.context.properties.PropertyMapper(手動 Bean 映射工具)
org.springframework.boot.task.TaskExecutorBuilder(線程池 Builder)
spring-core:
org.springframework.util.function.SingletonSupplier(“惰性求值”的 Supplier)
org.springframework.util.ClassUtils(獲取類的各種屬性)
org.springframework.util.CollectionUtils(各種集合操作)
org.springframework.util.PatternMatchUtils(僅實現(xiàn)
*
的字符串匹配工具,應(yīng)當(dāng)比正則更高效)org.springframework.util.ReflectionUtils(各種奇妙的反射操作,相較于 ClassUtils 更傾向于去 make effect)
org.springframework.util.StopWatch(簡單計時工具)
org.springframework.util.StreamUtils(IO 流操作)
org.springframework.util.StringUtils(常用字符串操作)
org.springframework.util.TypeUtils(繼承關(guān)系計算)
org.springframework.core.annotation.AnnotatedElementUtils(注解獲?。?/p>
spring-data-commons(這些類居然放在 spring-data 下……但一般來說都會引用 redis,因此會引用該包):
org.springframework.data.util.StreamUtils(java8 Stream 操作,終于有 zip 了嗚嗚嗚)
org.springframework.data.util.Optionals(關(guān)于 Optional 的一些操作)
org.springframework.data.util.ParsingUtils(切分駝峰命名法字符串)