springboot配置https访问
接口如图所示
将jks文件拖入resource文件下。
编辑 yml文件
server:
port: 18040
custom:
port: 8040
ssl:
key-store: classpath:xxxxxxx.jks
key-password: 密码
key-store-password: 密码
key-store-type: JKS
新增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.beans
共有 0 条评论