繁体   English   中英

协议处理程序启动失败 Spring 启动 SSL 应用程序

[英]Protocol handler start failed Spring Boot SSL application

一旦我在 spring 启动中添加 SSL 属性,我的应用程序就不会从命令行运行。

这是我的属性文件#API Settings server.port = 1180

## MULTIPART (MultipartProperties)
# Enable multipart uploads
spring.servlet.multipart.enabled=true
# Threshold after which files are written to disk.
spring.servlet.multipart.file-size-threshold=2KB
# Max file size.
spring.servlet.multipart.max-file-size=200MB
# Max Request Size
spring.servlet.multipart.max-request-size=215MB

## File Storage Properties
# All files uploaded through the REST API will be stored in this directory
file.upload-dir=D:/uploads


server.ssl.enabled=true

#Client
server.ssl.client-auth=need
server.ssl.key-store=D:\Symbox Staging Setup\SimulationAPI2waySLL\JKS\nt-ms.jks
server.ssl.key-store-password=kalsym

server.ssl.key-alias=nt-ms
server.ssl.key-store-type=JKS

server.ssl.trust-store=D:\Symbox Staging Setup\SimulationAPI2waySLL\JKS\nt-ms.jks
server.ssl.trust-store-password=kalsym

这是我的 output

输出

如果有人仍在寻找解决方案,这个 stackoverflow.com/a/58602917/8719655 有效。 谢谢卡洛斯

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM