springcloud框架项目目录结构 项目使用的其他软件说明 项目使用的其他软件,比如redis,nacos,mysql,rabbitmt,emqx,nexus等都是外置的,不部署到k8s中 流程示意图 编写Dockerfile文件 需要在项目每个模块的根目录下编写Dockerfile文件 Doc ...
分类:
编程语言 时间:
2021-06-30 17:39:23
阅读次数:
0
引入maven <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>3.5.1</version> </dependency> 将protoc文件生成j ...
分类:
编程语言 时间:
2021-06-29 16:11:55
阅读次数:
0
web相关概念回顾 web服务器软件 Tomcat ...
分类:
编程语言 时间:
2021-06-29 16:10:48
阅读次数:
0
索引是数据库中用来提高查询效率的一种数据结构,在mysql中的索引默认采用B+树的数据结构,如果没有索引,执行查询时, mysql必须扫描整张表的记录 ,直至找到所有符合要求的记录,在数据量比较大时,这样做会带来需要开销。如果作为搜索条件 的列上带有索引,则mysql可以通过索引结构迅速得到符合要求 ...
分类:
数据库 时间:
2021-06-29 16:10:29
阅读次数:
0
1 <?xml version="1.0" encoding="UTF-8"?> 2 <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:
移动开发 时间:
2021-06-29 16:09:22
阅读次数:
0
pom.xml导入pinyin4j的依赖 <dependency> <groupId>com.belerweb</groupId> <artifactId>pinyin4j</artifactId> <version>2.5.1</version> </dependency> 汉字转拼音工具类 pa ...
分类:
编程语言 时间:
2021-06-29 15:57:55
阅读次数:
0
1.购买阿里云 1)购买链接:https://developer.aliyun.com/plan/grow-up 2)购买完毕后,重置服务器root用户密码 3)连接阿里云服务器 方法一:通过可视化软件Xshel // 使用前绿化,新建一个会话 方法二:windows终端 >ssh root@47. ...
分类:
其他好文 时间:
2021-06-29 15:48:15
阅读次数:
0
1.打开Pycharm->VCS->Enable Version Control Integration->Git->remote->输入SSH 2.Define Remotes 3.复制SSH 到GIt Open Git bash 4.复制最后黄色的到git ,添加ssh key 5.复制SSH ...
分类:
其他好文 时间:
2021-06-29 15:28:35
阅读次数:
0
1、查询成绩比该课程平均成绩低的同学的成绩表 SELECT * FROM score AS a WHERE degree < (SELECT AVG(degree) FROM score AS b WHERE a.cno = b.cno) 2、查询所有任课教师的Tname和Depart. selec ...
分类:
数据库 时间:
2021-06-29 15:26:20
阅读次数:
0