springBoot jar包导航

// 阿里巴巴德鲁伊数据库连接池
    // https://mvnrepository.com/artifact/com.alibaba/druid-spring-boot-starter
    compile group: 'com.alibaba', name: 'druid-spring-boot-starter', version: '1.1.16'
    
    // 阿里巴巴fastjson JSON转换工具
    // https://mvnrepository.com/artifact/com.alibaba/fastjson
    compile group: 'com.alibaba', name: 'fastjson', version: '1.2.54'
    
    /* --- 文件上传支持 --- */
    // https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload
    compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.3'
    
    // 文件上传辅助jar包
    // https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on
    compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.61'
    /* --- 文件上传支持 END --- */
    
    /* --- 图片处理 --- */
    // https://mvnrepository.com/artifact/net.coobird/thumbnailator
    compile group: 'net.coobird', name: 'thumbnailator', version: '0.4.8'
    
    // 图片读取兼容包
    // https://mvnrepository.com/artifact/com.twelvemonkeys.imageio/imageio-jpeg
    compile group: 'com.twelvemonkeys.imageio', name: 'imageio-jpeg', version: '3.4.1'

    // 判断图片是否被旋转过    
    // https://mvnrepository.com/artifact/com.drewnoakes/metadata-extractor
    compile group: 'com.drewnoakes', name: 'metadata-extractor', version: '2.11.0'
    /* --- 图片处理 END --- */
    
    /* --- 定期处理 --- */
    // https://mvnrepository.com/artifact/org.quartz-scheduler/quartz
    compile group: 'org.quartz-scheduler', name: 'quartz', version: '2.3.1'
    // https://mvnrepository.com/artifact/org.quartz-scheduler/quartz-jobs
    compile group: 'org.quartz-scheduler', name: 'quartz-jobs', version: '2.3.1'
    /* --- 定期处理 END --- */
// 热部署支持
    // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools
    compile group: 'org.springframework.boot', name: 'spring-boot-devtools'
    
    // lombok get set 构造器节省代码插件
    // https://mvnrepository.com/artifact/org.projectlombok/lombok
    providedCompile group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
    annotationProcessor 'org.projectlombok:lombok:1.18.8'

/* --- 分页插件 前端配合datatables qiao好用~~~ --- */ // https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter compile group: 'com.github.pagehelper', name: 'pagehelper-spring-boot-starter', version: '1.2.3' // https://mvnrepository.com/artifact/tk.mybatis/mapper-spring-boot-starter compile group: 'tk.mybatis', name: 'mapper-spring-boot-starter', version: '1.2.4' /* --- 分页插件 END --- */ /* --- redis缓存支持 --- */ // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-redis //compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: '2.1.3.RELEASE' // redis缓存辅助jar包 // https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 compile group: 'org.apache.commons', name: 'commons-pool2', version: '2.6.1' /* --- redis END --- */ /* --- jsp支持 --- */ // https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-jasper compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-jasper', version: '9.0.21' // https://mvnrepository.com/artifact/javax.servlet/jstl compile group: 'javax.servlet', name: 'jstl', version: '1.2' /* --- jsp支持 END --- */

 

posted @ 2020-06-05 15:49  KeepSmiling_me  阅读(207)  评论(0)    收藏  举报