
{"id":788,"date":"2020-03-01T15:57:15","date_gmt":"2020-03-01T07:57:15","guid":{"rendered":"https:\/\/www.changxuan.top\/?p=788"},"modified":"2021-04-15T17:10:07","modified_gmt":"2021-04-15T09:10:07","slug":"spring-boot-%e5%a6%82%e4%bd%95%e5%90%8c%e6%97%b6%e6%94%af%e6%8c%81-http-%e4%b8%8e-https-%e8%ae%bf%e9%97%ae%ef%bc%9f","status":"publish","type":"post","link":"https:\/\/www.changxuan.top\/?p=788","title":{"rendered":"Spring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f"},"content":{"rendered":"\n<p>\u5927\u591a\u6570\u9879\u76ee\u8981\u4e48\u8981\u6c42 https \u534f\u8bae\u6765\u8bbf\u95ee\u8981\u4e48\u76f4\u63a5\u7528 http \u534f\u8bae\uff0c\u4f46\u6709\u4e9b\u9879\u76ee\u5c31\u662f\u8fd9\u4e48\u5947\u602a\u8981\u6c42\u540c\u65f6\u652f\u6301\u4e24\u79cd\u534f\u8bae\u3002<\/p>\n\n\n\n<p>\u6b64\u793a\u4f8b\u4e2d\u4f7f\u7528Spring Boot \u5185\u7f6e\u7684 tomcat \u670d\u52a1\u5668\uff0c\u6211\u62ff\u5230\u7684 SSL \u8bc1\u4e66\u662f crt \u7c7b\u578b\u7684\u3002\u6240\u6709\u9996\u5148\u9700\u8981\u5c06\u8bc1\u4e66\u8f6c\u6210 jks \u7c7b\u578b\u7684\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">crt \u8f6c jks<\/h4>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">  # \u8f6cp12\n  openssl pkcs12 -export -out keystore.pkcs12 -inkey nexus.key -in nexus.crt\n\t\n  # \u8fd9\u91cc\u9700\u8981\u8bbe\u7f6e\u5bc6\u7801\n  # \u518d\u5c06p12\u683c\u5f0f\u6587\u4ef6\u8f6c\u4e3a.jks\u683c\u5f0f\uff1a\n  keytool -v -importkeystore -srckeystore keystore.pkcs12 -srcstoretype PKCS12 -destkeystore \n  keystore.jks -deststoretype JKS\n  # \u8f93\u5165\u4e0a\u6b65\u8bbe\u7f6e\u7684\u5bc6\u7801\u5e76\u8bbe\u7f6e\u65b0\u5bc6\u7801 \u53ef\u4ee5\u548c\u4e0a\u4e00\u6b65\u4e00\u6837\u7684\u5bc6\u7801<\/pre>\n\n\n\n<p>Windows \u7cfb\u7edf\u9700\u8981\u5b89\u88c5 openssl \u540e\u624d\u53ef\u4ee5\u6267\u884c\u4e0a\u8ff0\u547d\u4ee4\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u5b89\u88c5<\/h4>\n\n\n\n<p>\u5c06\u751f\u6210\u7684 jks \u6587\u4ef6\u653e\u5230\u9879\u76ee\u7684 resource \u76ee\u5f55\u4e0b\uff0c\u5f00\u59cb\u914d\u7f6e application.yml \u6587\u4ef6\u3002<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"yaml\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">server:\n  port: 8888\n  custom:\n    # http \u7aef\u53e3\n    httpPort: 9999\n  ssl:\n    key-store: classpath:keystore.jks\n    key-password: 123456\n    key-store-type: JKS\n  tomcat:\n    uri-encoding: utf-8\n    basedir: tmp\n  #\n  servlet:\n    context-path: \/\n<\/pre>\n\n\n\n<p>\u7136\u540e\u7f16\u5199 Https\u914d\u7f6e\u7c7b\uff1aHttpConfig.java<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"java\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import org.apache.catalina.connector.Connector;\nimport org.springframework.beans.factory.annotation.Value;\nimport org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;\nimport org.springframework.boot.web.servlet.server.ServletWebServerFactory;\nimport org.springframework.context.annotation.Bean;\nimport org.springframework.context.annotation.Configuration;\n\n\/**\n * @Author: ChangXuan\n * @Decription: \u914d\u7f6e\u540c\u65f6\u652f\u6301 HTTP \u4e0e HTTPS \u8bbf\u95ee\n * @Date: 19:39 2020\/2\/20\n **\/\n@Configuration\npublic class HttpsConfig {\n    @Value(\"${server.custom.httpPort}\")\n    private Integer httpPort;\n\n    @Bean\n    public ServletWebServerFactory serverFactory() {\n        TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();\n        tomcat.addAdditionalTomcatConnectors(createStandardConnector());\n        return tomcat;\n    }\n    \/**\n     * \u914d\u7f6ehttp\n     * @return\n     *\/\n    private Connector createStandardConnector() {\n        Connector connector = new Connector(\"org.apache.coyote.http11.Http11NioProtocol\");\n        connector.setPort(httpPort);\n        return connector;\n    }\n}<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">\u6ce8\u610f\u4e8b\u9879<\/h4>\n\n\n\n<p>application.yml \u4e2d\u914d\u7f6e\u7684 jks \u6587\u4ef6\u7684\u76ee\u5f55\u4e3a classpath \uff0cclasspath \u6307\u7684\u662f target\/classes \u76ee\u5f55\u3002\u6240\u4ee5\u8fd0\u884c\u65f6\u5982\u679c\u62a5\u9519\u201c\u627e\u4e0d\u5230 jks \u6587\u4ef6\u201d\uff0c\u5c31\u624b\u52a8\u5c06 jks \u6587\u4ef6\u590d\u5236\u5230\u6b64\u76ee\u5f55\u4e0b\u4e00\u4efd\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5927\u591a\u6570\u9879\u76ee\u8981\u4e48\u8981\u6c42 https \u534f\u8bae\u6765\u8bbf\u95ee\u8981\u4e48\u76f4\u63a5\u7528 http \u534f\u8bae\uff0c\u4f46\u6709\u4e9b\u9879\u76ee\u5c31\u662f\u8fd9\u4e48\u5947\u602a\u8981\u6c42\u540c\u65f6\u652f\u6301\u4e24\u79cd\u534f &hellip; <a href=\"https:\/\/www.changxuan.top\/?p=788\" class=\"more-link\">\u7ee7\u7eed\u9605\u8bfb<span class=\"screen-reader-text\">Spring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[37,54],"tags":[78,68,75,79],"class_list":["post-788","post","type-post","status-publish","format-standard","hentry","category-tech","category-54","tag-http","tag-https","tag-springboot","tag-tomcat"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Spring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f - \u5e38\u8f69<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.changxuan.top\/?p=788\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Spring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f - \u5e38\u8f69\" \/>\n<meta property=\"og:description\" content=\"\u5927\u591a\u6570\u9879\u76ee\u8981\u4e48\u8981\u6c42 https \u534f\u8bae\u6765\u8bbf\u95ee\u8981\u4e48\u76f4\u63a5\u7528 http \u534f\u8bae\uff0c\u4f46\u6709\u4e9b\u9879\u76ee\u5c31\u662f\u8fd9\u4e48\u5947\u602a\u8981\u6c42\u540c\u65f6\u652f\u6301\u4e24\u79cd\u534f &hellip; \u7ee7\u7eed\u9605\u8bfbSpring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.changxuan.top\/?p=788\" \/>\n<meta property=\"og:site_name\" content=\"\u5e38\u8f69\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-01T07:57:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-04-15T09:10:07+00:00\" \/>\n<meta name=\"author\" content=\"\u5e38\u8f69\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u5e38\u8f69\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/?p=788#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/?p=788\"},\"author\":{\"name\":\"\u5e38\u8f69\",\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/#\\\/schema\\\/person\\\/08c8f0af44536928094dc1b4f88da3bd\"},\"headline\":\"Spring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f\",\"datePublished\":\"2020-03-01T07:57:15+00:00\",\"dateModified\":\"2021-04-15T09:10:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/?p=788\"},\"wordCount\":32,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/#\\\/schema\\\/person\\\/08c8f0af44536928094dc1b4f88da3bd\"},\"keywords\":[\"Http\",\"HTTPS\",\"SpringBoot\",\"tomcat\"],\"articleSection\":[\"\u6280\u672f\",\"\u6559\u7a0b\"],\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.changxuan.top\\\/?p=788#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/?p=788\",\"url\":\"https:\\\/\\\/www.changxuan.top\\\/?p=788\",\"name\":\"Spring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f - \u5e38\u8f69\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/#website\"},\"datePublished\":\"2020-03-01T07:57:15+00:00\",\"dateModified\":\"2021-04-15T09:10:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/?p=788#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.changxuan.top\\\/?p=788\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/?p=788#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\\\/\\\/www.changxuan.top\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/#website\",\"url\":\"https:\\\/\\\/www.changxuan.top\\\/\",\"name\":\"\u5e38\u8f69\",\"description\":\"\u95fb\u9053\u6709\u5148\u540e\uff0c\u672f\u4e1a\u6709\u4e13\u653b-\u4e00\u4e8c\u4e09\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/#\\\/schema\\\/person\\\/08c8f0af44536928094dc1b4f88da3bd\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.changxuan.top\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/#\\\/schema\\\/person\\\/08c8f0af44536928094dc1b4f88da3bd\",\"name\":\"\u5e38\u8f69\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/IMG_008520200606-095631.jpg\",\"url\":\"https:\\\/\\\/www.changxuan.top\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/IMG_008520200606-095631.jpg\",\"contentUrl\":\"https:\\\/\\\/www.changxuan.top\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/IMG_008520200606-095631.jpg\",\"width\":960,\"height\":960,\"caption\":\"\u5e38\u8f69\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.changxuan.top\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/IMG_008520200606-095631.jpg\"},\"description\":\"\u603b\u8981\u505a\u70b9\u4ec0\u4e48\u5427\uff01\",\"sameAs\":[\"https:\\\/\\\/www.changxuan.top\"],\"url\":\"https:\\\/\\\/www.changxuan.top\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Spring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f - \u5e38\u8f69","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.changxuan.top\/?p=788","og_locale":"zh_CN","og_type":"article","og_title":"Spring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f - \u5e38\u8f69","og_description":"\u5927\u591a\u6570\u9879\u76ee\u8981\u4e48\u8981\u6c42 https \u534f\u8bae\u6765\u8bbf\u95ee\u8981\u4e48\u76f4\u63a5\u7528 http \u534f\u8bae\uff0c\u4f46\u6709\u4e9b\u9879\u76ee\u5c31\u662f\u8fd9\u4e48\u5947\u602a\u8981\u6c42\u540c\u65f6\u652f\u6301\u4e24\u79cd\u534f &hellip; \u7ee7\u7eed\u9605\u8bfbSpring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f","og_url":"https:\/\/www.changxuan.top\/?p=788","og_site_name":"\u5e38\u8f69","article_published_time":"2020-03-01T07:57:15+00:00","article_modified_time":"2021-04-15T09:10:07+00:00","author":"\u5e38\u8f69","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"\u5e38\u8f69","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.changxuan.top\/?p=788#article","isPartOf":{"@id":"https:\/\/www.changxuan.top\/?p=788"},"author":{"name":"\u5e38\u8f69","@id":"https:\/\/www.changxuan.top\/#\/schema\/person\/08c8f0af44536928094dc1b4f88da3bd"},"headline":"Spring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f","datePublished":"2020-03-01T07:57:15+00:00","dateModified":"2021-04-15T09:10:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.changxuan.top\/?p=788"},"wordCount":32,"commentCount":0,"publisher":{"@id":"https:\/\/www.changxuan.top\/#\/schema\/person\/08c8f0af44536928094dc1b4f88da3bd"},"keywords":["Http","HTTPS","SpringBoot","tomcat"],"articleSection":["\u6280\u672f","\u6559\u7a0b"],"inLanguage":"zh-Hans","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.changxuan.top\/?p=788#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.changxuan.top\/?p=788","url":"https:\/\/www.changxuan.top\/?p=788","name":"Spring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f - \u5e38\u8f69","isPartOf":{"@id":"https:\/\/www.changxuan.top\/#website"},"datePublished":"2020-03-01T07:57:15+00:00","dateModified":"2021-04-15T09:10:07+00:00","breadcrumb":{"@id":"https:\/\/www.changxuan.top\/?p=788#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.changxuan.top\/?p=788"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.changxuan.top\/?p=788#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.changxuan.top\/"},{"@type":"ListItem","position":2,"name":"Spring Boot \u5982\u4f55\u540c\u65f6\u652f\u6301 http \u4e0e https \u8bbf\u95ee\uff1f"}]},{"@type":"WebSite","@id":"https:\/\/www.changxuan.top\/#website","url":"https:\/\/www.changxuan.top\/","name":"\u5e38\u8f69","description":"\u95fb\u9053\u6709\u5148\u540e\uff0c\u672f\u4e1a\u6709\u4e13\u653b-\u4e00\u4e8c\u4e09","publisher":{"@id":"https:\/\/www.changxuan.top\/#\/schema\/person\/08c8f0af44536928094dc1b4f88da3bd"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.changxuan.top\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":["Person","Organization"],"@id":"https:\/\/www.changxuan.top\/#\/schema\/person\/08c8f0af44536928094dc1b4f88da3bd","name":"\u5e38\u8f69","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.changxuan.top\/wp-content\/uploads\/2021\/04\/IMG_008520200606-095631.jpg","url":"https:\/\/www.changxuan.top\/wp-content\/uploads\/2021\/04\/IMG_008520200606-095631.jpg","contentUrl":"https:\/\/www.changxuan.top\/wp-content\/uploads\/2021\/04\/IMG_008520200606-095631.jpg","width":960,"height":960,"caption":"\u5e38\u8f69"},"logo":{"@id":"https:\/\/www.changxuan.top\/wp-content\/uploads\/2021\/04\/IMG_008520200606-095631.jpg"},"description":"\u603b\u8981\u505a\u70b9\u4ec0\u4e48\u5427\uff01","sameAs":["https:\/\/www.changxuan.top"],"url":"https:\/\/www.changxuan.top\/?author=1"}]}},"views":2274,"_links":{"self":[{"href":"https:\/\/www.changxuan.top\/index.php?rest_route=\/wp\/v2\/posts\/788","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.changxuan.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.changxuan.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.changxuan.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.changxuan.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=788"}],"version-history":[{"count":4,"href":"https:\/\/www.changxuan.top\/index.php?rest_route=\/wp\/v2\/posts\/788\/revisions"}],"predecessor-version":[{"id":1348,"href":"https:\/\/www.changxuan.top\/index.php?rest_route=\/wp\/v2\/posts\/788\/revisions\/1348"}],"wp:attachment":[{"href":"https:\/\/www.changxuan.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=788"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.changxuan.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=788"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.changxuan.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=788"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}