SpringBoot内置tomcat配置SSL证书(JAR包配置证书)
遨游死神 发布于 2018-03-07
1.域名中申请ssl证书, 一定要下载tomcat版的证书不然无法使用 2.将下载好的文件放到resource下(后缀 pfx) 3.配置你的yml文件: server: port: 8443 #服务端口(假如不是分离式的这里就用443默认端口,这里是为来默认443端口不跟接口端...
阅读(1193)赞 (0)
遨游死神 发布于 2018-03-07
1.域名中申请ssl证书, 一定要下载tomcat版的证书不然无法使用 2.将下载好的文件放到resource下(后缀 pfx) 3.配置你的yml文件: server: port: 8443 #服务端口(假如不是分离式的这里就用443默认端口,这里是为来默认443端口不跟接口端...
阅读(1193)赞 (0)
遨游死神 发布于 2019-06-26
效果如上,代码如下 console.log( `%c javar.cc %c 欢迎访问 %c`, ‘background:#35495e ; padding: 1px; border-radius: 3px 0 0 3px; color: #f...
阅读(1335)赞 (0)
遨游死神 发布于 2020-04-04
查看的地址:https://start.spring.io/actuator/info json工具地址 :https://tool.lu/
阅读(1741)赞 (0)
遨游死神 发布于 2020-03-30
NoSuchBeanDefinitionException: No qualifying bean of type ‘java.lang.Integer’ available 我得错误原因其实就是去掉类得时候忘记把上面得@Autowired去掉 然后他就会...
阅读(3142)赞 (0)
遨游死神 发布于 2020-03-24
很多情况用户量多的时候 东西会被超购,所以我们要有个判断条件跟添加的一起写,不然2个SQL分开写一点意义都没用必然超出! mybatis 例子 insert into enterprisecontrol (enterprise_id,control_id,time,st...
阅读(948)赞 (1)
遨游死神 发布于 2019-12-30
Redis官方并没有提供Windows版本的安装包(https://redis.io/download),但是微软开放技术小组(Microsoft Open Tech Group)开发和维护这个Windows端口针对Win64。 下载地址:https://githu...
阅读(1656)赞 (0)
遨游死神 发布于 2019-12-10
druid配置 介绍:https://github.com/alibaba/druid 推荐配置: initialSize 3 初始化配置 minIdle 3 最小连接数 maxActive 15 最大连接数 maxWait 5000 获取连接超时时间(单位:ms) timeBe...
阅读(2659)赞 (0)
遨游死神 发布于 2019-12-08
https://repo.spring.io/libs-release-local/org/springframework/spring/
阅读(1842)赞 (0)
遨游死神 发布于 2019-11-25
1.编辑文件 /etc/rc.local 2.输入命令:vim /etc/rc.local 3.在里面输入需要启动的程序代码
阅读(771)赞 (0)
遨游死神 发布于 2019-10-29
# 安装依赖 npm install # 启动服务 npm run dev 一、安装vue 1、安装node.js,安装完node.js之后,npm也会自动安装 查询是否安装成功的命令: node -v npm -v 2、全局安装脚手架工具vue-cl...
阅读(832)赞 (0)