SSH
// spring https://mvnrepository.com/artifact/org.springframework/spring-contextcompile group: 'org.springframework', name: 'spring-context', version: '5.1.6.RELEASE'// spring-mvc https://mvnrepository.com/artifact/org.springframework/spring-webmvccompile group: 'org.springframework', name: 'spring-webmvc', version: '5.1.6.RELEASE'// mybaits https://mvnrepository.com/artifact/org.mybatis/mybatiscompile group: 'org.mybatis', name: 'mybatis', version: '3.5.1'// mysql数据库 https://mvnrepository.com/artifact/mysql/mysql-connector-javacompile group: 'mysql', name: 'mysql-connector-java', version: '8.0.11'// c3p0数据库连接池 https://mvnrepository.com/artifact/com.mchange/c3p0compile group: 'com.mchange', name: 'c3p0', version: '0.9.5.4'//下面可选// context扩展 https://mvnrepository.com/artifact/org.springframework/spring-context-supportcompile group: 'org.springframework', name: 'spring-context-support', version: '5.1.6.RELEASE'// spring事务 https://mvnrepository.com/artifact/org.springframework/spring-txcompile group: 'org.springframework', name: 'spring-tx', version: '5.1.6.RELEASE'// Spring-JDBC https://mvnrepository.com/artifact/org.springframework/spring-jdbccompile group: 'org.springframework', name: 'spring-jdbc', version: '5.1.6.RELEASE'复制代码
日志
// https://mvnrepository.com/artifact/org.slf4j/slf4j-apicompile group: 'org.slf4j', name: 'slf4j-api', version: '1.8.0-beta4'// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-corecompile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.2'复制代码
Json解析
// https://mvnrepository.com/artifact/com.google.code.gson/gsoncompile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databindcompile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.8'复制代码
数据库连接池
// https://mvnrepository.com/artifact/com.mchange/c3p0compile group: 'com.mchange', name: 'c3p0', version: '0.9.5.4'复制代码
HTML解析
// https://mvnrepository.com/artifact/org.jsoup/jsoupcompile group: 'org.jsoup', name: 'jsoup', version: '1.11.3'#### HTTP Clients```gradle// https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttpcompile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.14.1'复制代码
字节码解释器
// https://mvnrepository.com/artifact/org.javassist/javassistcompile group: 'org.javassist', name: 'javassist', version: '3.25.0-GA'复制代码
Aspectj (AOP)
// https://mvnrepository.com/artifact/org.aspectj/aspectjweavercompile group: 'org.aspectj', name: 'aspectjweaver', version: '1.9.3'复制代码
缓存
// https://mvnrepository.com/artifact/org.ehcache/ehcachecompile group: 'org.ehcache', name: 'ehcache', version: '3.7.1'// https://mvnrepository.com/artifact/net.sf.ehcache/ehcachecompile group: 'net.sf.ehcache', name: 'ehcache', version: '2.10.6'复制代码
复制代码