共计 2477 个字符,预计需要花费 7 分钟才能阅读完成。
最近都在用 https 了,可是咱们创立一个 springboot 的我的项目还是用 http,明天咱们来看一下怎么将 http 变成 https。。。
1. 生成证书
这里咱们须要应用 jdk 自带的 keytool 命令生成证书并复制到咱们我的项目的
目录下。
1.1 关上 CMD
关上咱们装置的 jdk 的 bin 目录:
1.2 应用 keytool 命令生成证书
应用 keytool 命令生成证书:
keytool
-genkey
-alias server(别名)
-keypass 123456(别名明码)
-keyalg RSA(算法)
-keysize 1024(密钥长度)
-validity 365(有效期,天单位)
-keystore D:/keys/server.keystore(指定生成证书的地位和证书名称)
-storepass 123456(获取 keystore 信息的明码)
依据本人的理论状况依照此格局进行生成即可:
查看指标文件夹发现证书曾经生成结束!
2. 新建 springboot 我的项目
2.1 pom.xml
这里咱们只是引入 web 即可
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
2.2 application.yml
server:
ssl:
# 证书门路
key-store: classpath:server.keystore
# 与申请时输出统一
key-alias: server
enabled: true
key-store-type: JKS
#与申请时输出统一
key-store-password: 123456
# 浏览器默认端口 和 80 相似,https 默认的端口号为 443
port: 443
2.3 HttpsConfig 配置文件
import org.apache.catalina.Context;
import org.apache.catalina.connector.Connector;
import org.apache.tomcat.util.descriptor.web.SecurityCollection;
import org.apache.tomcat.util.descriptor.web.SecurityConstraint;
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* <p>
* HTTPS 配置类
* </p>
*
* @author www.zhouzhaodong.xyz
* @date Created in 2020/9/17 14:30
*/
@Configuration
public class HttpsConfig {
/**
* 这里须要查看 application.yml 外面的端口号配置
* 配置 http(80) -> 强制跳转到 https(443)
*/
@Bean
public Connector connector() {Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");
connector.setScheme("http");
connector.setPort(80);
connector.setSecure(false);
connector.setRedirectPort(443);
return connector;
}
@Bean
public TomcatServletWebServerFactory tomcatServletWebServerFactory(Connector connector) {TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory() {
@Override
protected void postProcessContext(Context context) {SecurityConstraint securityConstraint = new SecurityConstraint();
securityConstraint.setUserConstraint("CONFIDENTIAL");
SecurityCollection collection = new SecurityCollection();
collection.addPattern("/*");
securityConstraint.addCollection(collection);
context.addConstraint(securityConstraint);
}
};
tomcat.addAdditionalTomcatConnectors(connector);
return tomcat;
}
}
2.3 创立一个 HttpsController
/**
* 控制器
* @author www.zhouzhaodong.xyz
* @date Created in 2020/9/17 14:30
*/
@RestController
public class HttpsController {@RequestMapping("/")
public String https(){return "success";}
}
3. 进行测试
启动我的项目,浏览器拜访 http://localhost 将主动跳转到 https://localhost 并显示内容:
集体博客地址:
http://www.zhouzhaodong.xyz
我的项目 GitHub 地址为:
https://github.com/zhouzhaodo…
正文完