No longer maintained, superseded by https://github.com/shepherdviolet/glacimon不再维护, 请用新项目: https://github.com/shepherdviolet/glacimon- Comprehensive Java common library (Java7+)
 - Github Home
 - Search in Maven Central
 - PGP Key
 
Core module of thistle
- BeanInfoUtils : Get property information of Java Bean
 - GenericClassUtils : Get actual types of generic class
 - MethodCaller : Get caller information of a method
 - ClassPrinter : Print all information for a class / object
 
- SimpleKeyValueEncoder : Convert between simple Key-Value and String
 - ThreadPoolExecutorUtils : Create thread pool
 - ...
 
The module has more crypto features (depends on bouncy-castle)
The module for tracing
- Search 
thistle-commonin Maven Central - Search 
thistle-crypto-plusin Maven Central - Search 
thistle-tracein Maven Central 
repositories {
    //Thistle in mavenCentral
    mavenCentral()
}
dependencies {
    compile 'com.github.shepherdviolet:thistle-common:?'
    compile 'com.github.shepherdviolet:thistle-crypto-plus:?'
    compile 'com.github.shepherdviolet:thistle-trace:?'
}
    <dependency>    
        <groupId>com.github.shepherdviolet</groupId>
        <artifactId>thistle-common</artifactId>
        <version>?</version> 
    </dependency>
    <dependency>    
        <groupId>com.github.shepherdviolet</groupId>
        <artifactId>thistle-crypto-plus</artifactId>
        <version>?</version> 
    </dependency>
    <dependency>    
        <groupId>com.github.shepherdviolet</groupId>
        <artifactId>thistle-trace</artifactId>
        <version>?</version> 
    </dependency>