公钥和私钥+springboot配置文件

git的公钥和私钥
1、如何生成git的公钥和私钥?
图片:
公钥和私钥+springboot配置文件_第1张图片
2、如何把公钥和私钥加到github上去?
图片:
公钥和私钥+springboot配置文件_第2张图片

图片:
公钥和私钥+springboot配置文件_第3张图片
3、Git的暂时存储
https://git-scm.com/book/zh/v1(Stashing)
4、springboot的配置文件是什么意思?
本地数据库的配置
图片:
公钥和私钥+springboot配置文件_第4张图片server.port=8081

db.url.adstream=jdbc:mysql://127.0.0.1:3306/temp?useSSL=false&useUnicode=true&characterEncoding=utf-8
db.adstream.username=root
db.adstream.password=123456

#db.url.adstream=jdbc:mysql://39.105.113.29:3306/ad_stream?useSSL=false&useUnicode=true&characterEncoding=utf-8
#db.adstream.username=mxTech
#db.adstream.password=mxkeji2019!

#redis集群配置
clusterRedisClient.maxTotal=128
clusterRedisClient.maxWait=500
clusterRedisClient.maxIdle=8
#clusterRedisClient.addresses=10.0.5.176:7535,10.0.6.175:7535,10.0.6.176:7535
#clusterRedisClient.addresses=39.105.113.29
clusterRedisClient.addresses=127.0.0.1
clusterRedisClient.port=6379

sem.baidu.uri=http://sem.baidubce.com/v1/feed/cloud/
sem.baidu.host=http://106.12.150.235
远程数据库的配置
图片: 公钥和私钥+springboot配置文件_第5张图片
不同的配置使用postman调用接口时候的url不一样

你可能感兴趣的:(java基础)