插件 -下载- 使用
BootCDN前端开源项目https://www.bootcdn.cn/all/
bootstrap:HTML、CSS 和 JS 框架
插件https://v3.bootcss.com/
参考博客https://www.cnblogs.com/landeanfen/tag/bootstrap/
bootstrap-carousel:轮播
插件https://v3.bootcss.com/getting-started/#downloadBootstrap源码中
bootstrap-table:表格
插件http://bootstrap-table.wenzhixin.net.cn/zh-cn/
参考博客https://www.cnblogs.com/landeanfen/p/4976838.html
bootstrap-select:选择框
插件http://www.bootstrapmb.com/search?keyword=select
bootstrap3-dialog:模拟框
插件https://www.bootcdn.cn/bootstrap3-dialog/
layer:弹窗
插件https://layer.layui.com/
bootstrap3-paginator:分页
插件https://github.com/lyonlai/bootstrap-paginator
bootstrap-file-input:文件上传
插件http://plugins.krajee.com/
参考博客https://www.cnblogs.com/landeanfen/p/5007400.html
jsZip:纯js实现页面上的图片内容打包zip下载
插件http://stuk.github.io/jszip/
参考博客https://blog.csdn.net/qq_29101365/article/details/80494552
ueditor:百度富文本编辑框
插件https://ueditor.baidu.com/website/index.html
jquery-easyui:UI界面
插件http://www.jeasyui.net/
My97DatePicker:日期控件
插件http://www.my97.net/index.asp
joda-time:日期时间
插件http://joda.sourceforge.net/forge.net/
https://sourceforge.net/projects/joda-time/
quartz-scheduler:定时任务
插件http://www.quartz-scheduler.org/
http://mvnrepository.com/artifact/org.quartz-scheduler/quartz
zTree_v3:树
插件http://www.treejs.cn/v3/main.php#_zTreeInfo
ECharts:图表
插件http://echarts.baidu.com/api.html#echarts
font-awesome:图标
插件http://fontawesome.dashgame.com/
viewer:jquery图像查看
插件https://www.bootcdn.cn/viewer.js/
Arcgis for javascript:地图
插件https://developers.arcgis.com/javascript/
JUnit:单元测试
JUnit4https://junit.org/junit4/
JUnit5https://junit.org/junit5/
jar包-下载
jar包下载地址http://www.java2s.com/Code/Jar/CatalogJar.htm
资源库下载jar包地址:https://repo.spring.io/release/
jar包下载地址https://mvnrepository.com/
JUnit:单元测试
junit4.jarhttp://www.java2s.com/Code/Jar/j/junit4.htm
quartz-scheduler:定时任务
参考https://www.cnblogs.com/monian/p/3822980.html
Json解析、所需jar包
jar包下载地址http://www.java2s.com/Code/Jar/CatalogJar.htm
Json解析 所需jar包 json json.jar net.sf.json (1). commons-beanutils.jar
(2). commons-collections.jar
(3). commons-jexl.jar
(4). commons-lang.jar
(5). commons-logging.jar
(6). ezmorph.jar
(7). json-lib-*.*.*-jdk**.jarfastjson fastjson.jar gson gson.jar
以解析字符串数组为例: String parameter= [{"id":"pdTNKcY1YS55oG2M",.......}]
2. 关于net.sf.json
JSONArray jsonArray = JSONArray.fromObject(parameter);
String id= jsonArray.getJSONObject(0).get("id");
3. 关于 fastjson
JSONArray jsonArray = JSON.parseArray(parameter);
String id = jsonArray.getJSONObject(0).get("id");
4. 关于 gson (gson解析数据成现有对象比较好,如果没有对应实体,不如上面两个好用)
String student="{"name":"tom","age":12}";
Strudent stu=new Gson().fromJson(student,student.class);
参考https://www.cnblogs.com/haocp/p/8000445.html
jquery.js各版本
jquery.js各版本下载地址http://www.jq22.com/jquery-info122
深度理解定义
Json