博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java常用jar包
阅读量:6417 次
发布时间:2019-06-23

本文共 2925 字,大约阅读时间需要 9 分钟。


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'复制代码
  • ehcache.xml配置文件
复制代码

转载于:https://juejin.im/post/5ccfcbd251882541eb45428c

你可能感兴趣的文章
Redis+Spring缓存实例
查看>>
Storm集群安装详解
查看>>
centos7.x搭建svn server
查看>>
原码编译安装openssh6.7p1
查看>>
easyui-datetimebox设置默认时分秒00:00:00
查看>>
蚂蚁分类信息系统5.8多城市UTF8开源优化版
查看>>
在django1.2+python2.7环境中使用send_mail发送邮件
查看>>
“Metro”,移动设备视觉语言的新新人类
查看>>
PHP源代码下载(本代码供初学者使用)
查看>>
Disruptor-NET和内存栅栏
查看>>
Windows平台ipod touch/iphone等共享笔记本无线上网设置大全
查看>>
播放加密DVD
查看>>
产品设计体会(3013)项目的“敏捷沟通”实践
查看>>
RHEL6.3基本网络配置(1)ifconfig命令
查看>>
网络诊断工具之—路由追踪tracert命令
查看>>
Java模拟HTTP的Get和Post请求(增强)
查看>>
php 环境搭建(windows php+apache)
查看>>
让虚拟机的软盘盘符不显示(适用于所有windows系统包括Windows Server)
查看>>
Cygwin不好用
查看>>
jQuery插件之验证控件jquery.validate.js
查看>>