摘要:
原文地址:https://blog.csdn.net/bicheng4769/article/details/86668209 阅读全文
摘要:
原文地址:https://www.cnblogs.com/carsonwuu/p/10399527.html 阅读全文
摘要:
List<Template> template = this.templateService.findTemplate(directoryUuid); if(template!=null && template.size()>0){ template = template.stream().sort 阅读全文
摘要:
1、业务需求 例如查询省市县 分别在不同的三个表中存储 省表,市表,县表 根据省的id 查询一个对象 包含省市县的内容 分别写三个VO对象 省Vo(包含市Volist) 市Vo(包含县VoList) 县Vo Mpper文件: <resultMap id=“shengMap” type=“shengV 阅读全文
摘要:
原文地址:https://blog.csdn.net/xupengbo527/article/details/108533368 使用阿里的seate实现分布式事务的实现。 注册中心使用eureka.远程调用使用feign。请自行搭建分布式系统。 1. 下载seate项目。下载地址:https:// 阅读全文
摘要:
Enumeration<String> headerNames = request.getHeaderNames(); while(headerNames.hasMoreElements()) {//判断是否还有下一个元素 String nextElement = headerNames.nextE 阅读全文
摘要:
1、必须注册到eureka并被发现 2、pom引入 包 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </depend 阅读全文
摘要:
其他格式未测试过 只应用过.sql文件 使用场景 :navcat执行多个sql文件 navcat不支持执行多个sql文件 所以将多个sql文件整合成一个。 windows下 将多个sql文件整合成一个sql文件 -》 在文件夹的目录运行cmd -》执行 copy *.sql XXXX.sql; li 阅读全文
摘要:
###############查看linux是否安装了mysql rpm -qa | grep mysql ###############查看linux自带的mariadb版本 rpm -qa |grep -i mariadb ##############卸载linux 自带的mariadb rpm 阅读全文
摘要:
原文地址:https://blog.csdn.net/qq_22040075/article/details/73348180 Maven打包会使用Maven仓库,本地的Jar并不会打入War包中,那么这种情况要如何解决呢? 创建本地包目录 在项目根目录中创建lib目录用于存放本地Jar包 POM. 阅读全文