了解SpringCloud 微服务
为什么选择 SpringCloud因为 SpringCloud 出现,对微服务技术提供了非常大的帮助,因为 SpringCloud 提供了一套完整的微服务解决方案,不像其他框架只是解决了微服务中某个问 题。 服务治理: 阿里巴巴开源的 Dubbo 和当当网在其基础上扩展的 Dubbox、Eur
mysql5.7自动定时备份
#!/bin/bashPATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbinexport PATH#数据库用户名dbuser='root'#数据库用密码dbpasswd='123123'#需要
mySQL 定时备份错误 3167 - The 'INFORMATION_SCHEMA.GLOBAL_STATUS' feature is disabled; see the document
错误如下:[Batch Job] Batch Job 121_test_bak start--------------- 2020-01-15 16:31:39 ---------------[BAK] Backup schema information_schema start[BAK] Gett
SpringBoot + Elasticsearch7.6实现查询及高亮分词查询
SpringBoot + Elasticsearch7.6实现查询及高亮分词查询需要先安装Elasticsearch7.6环境。1、导入spring-data-elasticsearch依赖。(版本需要与Elasticsearch一致,还需要注意自己的springboot版本是否支持)<dep
netty前端demo
<div>发送消息:</div><input type="text" id="msgContent"/><input type="button" value="点我发送" onc
springboot整合netty
springboot整合netty1、引入pom<!--集成netty--> <dependency> <groupId>io.netty</groupId> <artifactId>
html鼠标点击出现自定义文字
引入jquery<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.js"></script>引入js<script src="http://zhouql.v
java四种常用排序算法
一、冒泡排序冒泡排序(Bubble Sort)是一种简单的排序。它重复地走访过要排序的数列,一次比较两个元素,如果他们的顺序错误就把他们交换过来。走访数列的工作是重复地进行直到没有需要交换,也就是说该数列已经排序完成。算法描述:1、比较相邻的元素,如果第一个比第二个大,就交换他们两个2、对每一对相邻