1、jQuery
https://code.jquery.com/jquery-3.4.0.min.js
<script src="https://code.jquery.com/jquery-3.4.0.min.js"></script>
2、bootstrap
https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css
https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstra
常用样式:
table
【table-striped】【table-bordered】【table-hover】【table-condensed】
form
【form-control】【btn-primary】【btn-warning】【btn-danger】【disabled】【btn-block】
ul
【nav nav-pills水平ul】【nav-stacked垂直ul】【active选中】【badge徽章】
pre
【pre-scrollable滚动条】
3、vue
https://cdn.staticfile.org/vue/2.4.2/vue.min.js
https://unpkg.com/vue@3.2.31/dist/vue.global.js
<script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script>
4、ECharts
https://cdn.staticfile.org/echarts/4.3.0/echarts.min.js
<script src="https://cdn.staticfile.org/echarts/4.3.0/echarts.min.js"></script>
5、easyUI
https://www.jeasyui.com/easyui/themes/default/easyui.css
https://www.jeasyui.com/easyui/themes/icon.css
https://www.jeasyui.com/easyui/jquery.min.js
https://www.jeasyui.com/easyui/jquery.easyui.min.js
6、React
https://cdn.staticfile.org/react/16.4.0/umd/react.development.js
https://cdn.staticfile.org/react-dom/16.4.0/umd/react-dom.development.js
https://cdn.staticfile.org/babel-standalone/6.26.0/babel.min.js
7、maven
外网配配置(阿里云镜像地址)
<?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <localRepository>D:\officesoft\Java\maven\mavenrepository</localRepository> <pluginGroups> </pluginGroups> <proxies> </proxies> <servers> </servers> <mirrors> <!-- 阿里云镜像 --> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/</url> <mirrorOf>central</mirrorOf> </mirror> <!-- junit镜像地址 --> <mirror> <id>junit</id> <name>junit Address/</name> <url>http://jcenter.bintray.com/</url> <mirrorOf>central</mirrorOf> </mirror> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors> <profiles> </profiles> </settings>
mysql5.1.6
<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.6</version> </dependency>
hadoop2.7.3
<dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-client</artifactId> <version>2.7.3</version> </dependency>
mybaits3.4.5
<dependencies> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.1</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.6</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.10</version> </dependency> </dependencies>