摘要:
原文地址:https://www.jianshu.com/p/7cabe09ce563 亲测有效,很好用! public void downloadFiles(HttpServletRequest request, HttpServletResponse response, 其他为获取下载文件信息的 阅读全文
摘要:
1.安装VM 2.VM安装虚拟机,并配置固定IP,测试可连外网 3.VM:编辑→虚拟网络编辑器→更改设置→NAT设置→添加端口转发。填充主机映射的端口、要映射的虚拟机地址、虚拟机端口 4.查看主机防火墙状态,如果关闭状态,可以直连,如果开启状态且不想关闭。 4.1 防火墙设置面板→高级设置→入站规则 阅读全文
摘要:
其他的都类似,只不过参数不太一样,重写之后想怎么玩就怎么玩 首先创建简单maven项目,这里不做说明,自己搞 物理库自行创建,必须有分片列,其他随意。 导入依赖 <!-- sharding-jdbc依赖 --> <dependency> <groupId>org.apache.shardingsph 阅读全文
摘要:
原理看官网:https://shardingsphere.apache.org/document/current/cn/overview/ sharding proxy代理mysql实现分库的步骤: 下载 wget https://mirrors.tuna.tsinghua.edu.cn/apach 阅读全文
摘要:
安装前需要到maven安装位置的配置文件中修改默认的maven库地址,才能安装到指定位置 mvn install:install-file -Dfile=C:\Users\Administrator\Desktop\xxx.jar -DgroupId=groupId -DartifactId=art 阅读全文
摘要:
原文地址:https://www.cnblogs.com/newlangwen/p/9969904.html Tree 结构 Tree递归 5个方法实现递归树形结构 逻辑: 构建树形结构 —— 获取树形根菜单 —— 根据树形根菜单获取子菜单(递归调用) 阅读全文
摘要:
我用的win 系统 bash命令 git clone --recursive xxxx.git 阅读全文
摘要:
[size=12px]1。^\d+$ //匹配非负整数(正整数 + 0) ^[0-9]*[1-9][0-9]*$ //匹配正整数 ^((-\d+)|(0+))$ //匹配非正整数(负整数 + 0) ^-[0-9]*[1-9][0-9]*$ //匹配负整数 ^-?\d+$ //匹配整数 ^\d+(\.\d+)?$ //匹配非负浮点数(正浮点数 + 0) ^(([0-9]+\.[0-9]*[1-9][ 阅读全文
摘要:
地址:https://www.cnblogs.com/pejsidney/p/9001875.html 东西有点多,先看看,看完再写 阅读全文