<?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" ...
分类:
其他好文 时间:
2020-06-27 09:19:58
阅读次数:
1531
1、Maven的继承 Maven的继承,就是子模块会自动继承父模块中定义的一些依赖、插件、属性等等。我们使用继承的目的是为了消除重复性,实际项目中最常用的是把子模块pom中很多相同的依赖配置提取出来,统一锁定在父模块的pom中。如:grouptId、artifactId、version等等。然后在使... ...
分类:
其他好文 时间:
2020-06-26 22:26:08
阅读次数:
57
Singleton: Make sure that there can be "only one instance" of a Class The Singleton class only provide a "static method" to get its object for example ...
分类:
其他好文 时间:
2020-06-26 20:37:18
阅读次数:
44
package jkcs; import java.net.MalformedURLException; import java.net.URL; import java.util.concurrent.TimeUnit; import org.openqa.selenium.remote.Desi ...
分类:
移动开发 时间:
2020-06-26 20:17:06
阅读次数:
67
package jkcs; import java.net.MalformedURLException; import java.net.URL; import java.util.concurrent.TimeUnit; import org.openqa.selenium.remote.Desi ...
分类:
移动开发 时间:
2020-06-26 19:54:25
阅读次数:
76
常用命令 git clone url git add . git commit -m "info" git push --force origin master Workspace:工作区 Index / Stage:暂存区 Repository:仓库区(或本地仓库) Remote:远程仓库 本地分 ...
分类:
其他好文 时间:
2020-06-26 18:27:21
阅读次数:
86
本项目新建一个项目,项目名称建议和远程仓库名称一致 helloWorldEclipse 右击项目 Team->Remote->Push 复制下HTTPS仓库地址 帖进去,自动解析host和仓库路径,然后输入用户名密码,可选存储认证信息 然后Next 点Add All Branches Spec,添加 ...
分类:
系统相关 时间:
2020-06-26 16:18:53
阅读次数:
74
一.redis概述 1.nosql概念 NoSql:即Not-onlySQL。非关系型数据库,作为关系型数据库的补充 2.redis概念 redis(remote dictionary server)c语言开发的一个键值对数据库。单机qps(每秒读取数量)5W+ 3.redis数据类型 1.stri ...
分类:
其他好文 时间:
2020-06-26 12:54:57
阅读次数:
57
一、下载tomcat源码 https://github.com/apache/tomcat/tree/8.5.x 二、建立pom 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/PO ...
分类:
其他好文 时间:
2020-06-25 19:55:28
阅读次数:
77
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sc ...
分类:
其他好文 时间:
2020-06-25 17:32:46
阅读次数:
65