1. 程式人生 > >【spring】spirng中的常用工具類

【spring】spirng中的常用工具類

ren handle file 監控 拷貝 trac convert cas har

一、概述

  很多時候,很多工具類其實spring中就已經提供,常用的工具類有:

    參考:https://www.cnblogs.com/langtianya/p/3875103.html

  內置的resouce類型
    UrlResource
    ClassPathResource
    FileSystemResource
    ServletContextResource
    InputStreamResource
    ByteArrayResource
    EncodedResource 也就是Resource加上encoding, 可以認為是有編碼的資源
    VfsResource(在jboss裏經常用到, 相應還有 工具類 VfsUtils)

    org.springframework.util.xml.ResourceUtils 用於處理表達資源字符串前綴描述資源的工具. 如: "classpath:".
    有 getURL, getFile, isFileURL, isJarURL, extractJarFileURL

  工具類
    org.springframework.core.annotation.AnnotationUtils

        處理註解
    org.springframework.core.io.support.PathMatchingResourcePatternResolver

        用 於處理 ant 匹配風格(com/*.jsp, com/*/.jsp),找出所有的資源, 結合上面的resource的概念一起使用

    org.springframework.core.io.support.PropertiesLoaderUtils

        加載Properties資源工具類,和Resource結合
    org.springframework.core.BridgeMethodResolver

        橋接方法分析器.
    org.springframework.core.GenericTypeResolver

        範型分析器, 在用於對範型方法, 參數分析.
    org.springframework.core.NestedExceptionUtils

  xml工具


    org.springframework.util.xml.AbstractStaxContentHandler
    org.springframework.util.xml.AbstractStaxXMLReader
    org.springframework.util.xml.AbstractXMLReader
    org.springframework.util.xml.AbstractXMLStreamReader
    org.springframework.util.xml.DomUtils
    org.springframework.util.xml.SimpleNamespaceContext
    org.springframework.util.xml.SimpleSaxErrorHandler
    org.springframework.util.xml.SimpleTransformErrorListener
    org.springframework.util.xml.StaxUtils
    org.springframework.util.xml.TransformerUtils

  其它工具集
    org.springframework.util.xml.AntPathMatcher

        ant風格的處理
    org.springframework.util.xml.AntPathStringMatcher
    org.springframework.util.xml.Assert

        斷言,在我們的參數判斷時應該經常用
    org.springframework.util.xml.CachingMapDecorator
    org.springframework.util.xml.ClassUtils

        用於Class的處理
    org.springframework.util.xml.CollectionUtils

        用於處理集合的工具
    org.springframework.util.xml.CommonsLogWriter
    org.springframework.util.xml.CompositeIterator
    org.springframework.util.xml.ConcurrencyThrottleSupport
    org.springframework.util.xml.CustomizableThreadCreator
    org.springframework.util.xml.DefaultPropertiesPersister
    org.springframework.util.xml.DigestUtils

        摘要處理, 這裏有用於md5處理信息的
    org.springframework.util.xml.FileCopyUtils

        文件的拷貝處理, 結合Resource的概念一起來處理, 真的是很方便
    org.springframework.util.xml.FileSystemUtils
    org.springframework.util.xml.LinkedCaseInsensitiveMap
        key值不區分大小寫的LinkedMap
    org.springframework.util.xml.LinkedMultiValueMap

      一個key可以存放多個值的LinkedMap
    org.springframework.util.xml.Log4jConfigurer

      一個log4j的啟動加載指定配制文件的工具類
    org.springframework.util.xml.NumberUtils

      處理數字的工具類, 有parseNumber 可以把字符串處理成我們指定的數字格式, 還支持format格式,     convertNumberToTargetClass 可以實現Number類型的轉化.
    org.springframework.util.xml.ObjectUtils

      有很多處理null object的方法. 如nullSafeHashCode, nullSafeEquals, isArray, containsElement, addObjectToArray, 等有用的方法
    org.springframework.util.xml.PatternMatchUtils

      spring裏用於處理簡單的匹配. 如 Spring‘s typical "xxx", "xxx" and "xxx" pattern styles
    org.springframework.util.xml.PropertyPlaceholderHelper

      用於處理占位符的替換
    org.springframework.util.xml.ReflectionUtils

      反映常用工具方法. 有 findField, setField, getField, findMethod, invokeMethod等有用的方法
    org.springframework.util.xml.SerializationUtils

      用於java的序列化與反序列化. serialize與deserialize方法
    org.springframework.util.xml.StopWatch

      一個很好的用於記錄執行時間的工具類, 且可以用於任務分階段的測試時間. 最後支持一個很好看的打印格式. 這個類應該經常用
    org.springframework.util.xml.StringUtils
    org.springframework.util.xml.SystemPropertyUtils
    org.springframework.util.xml.TypeUtils

        用於類型相容的判斷. isAssignable
    org.springframework.util.xml.WeakReferenceMonitor

        弱引用的監控

  和web相關的工具
    org.springframework.web.util.CookieGenerator
    org.springframework.web.util.HtmlCharacterEntityDecoder
    org.springframework.web.util.HtmlCharacterEntityReferences
    org.springframework.web.util.HtmlUtils
    org.springframework.web.util.HttpUrlTemplate
        這個類用於用字符串模板構建url, 它會自動處理url裏的漢字及其它相關的編碼. 在讀取別人提供的url資源時, 應該經常用
        String url = "http://localhost/myapp/{name}/{id}";
    org.springframework.web.util.JavaScriptUtils
    org.springframework.web.util.Log4jConfigListener
        用listener的方式來配制log4j在web環境下的初始化
    org.springframework.web.util.UriTemplate
    org.springframework.web.util.UriUtils

        處理uri裏特殊字符的編碼
    org.springframework.web.util.WebUtils

二、使用實例

  1.DigestUtils ——用於MD5加密

【spring】spirng中的常用工具類