springboot如何创建自签名HTTPS数字证书

1、生成证书文件

keytool -genkey -alias jetty -dname "CN=demo,OU=demo,O=demo,L=BeiTing,ST=BeiTing,C=CN" -storetype PKCS12 -keyalg RSA --keysize 2048 -keystore keystore.p12 -validity 365

2、将证书文件放到resources目录下

3、添加ssl配置

server:  
  ssl:
    enabled: true
    key-store-type: PKCS12
    key-store: classpath:keystore.p12
    key-store-password: 123456

你可能感兴趣的:(spring,boot,https,java)