In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
How to configure ssl in Springboot, in view of this problem, this article introduces the corresponding analysis and solution in detail, hoping to help more partners who want to solve this problem to find a more simple and feasible way.
SSL (Secure Sockets Layer secure socket layer) is a security protocol that provides security and data integrity for network communication. SSL encrypts the network connection at the network transport layer, and the SSL protocol is located between the TCP/IP protocol and various application layer protocols to provide security support for data communication. SSL protocol is divided into two layers. SSL recording protocol is based on TCP, which provides basic functions such as data encapsulation, compression and encryption for high-level protocols. SSL handshake protocol is based on SSL recording protocol. Users authenticate, negotiate encryption algorithms and exchange encryption keys before the actual data transmission begins.
1. Generate a certificate that can be self-signed or obtained from the SSL Certificate Authority.
Keytool in JDK is a certificate management tool that can generate self-signed certificates.
The system I use here is deepin, and then generate the command as follows (if you can't find the keytoo command, configure the java environment first)
The name I specify is tomcat.keystore, and the alias is tomcat. The password is set by myself. I use tomcat here. The last one can be pressed directly by enter.
Keytool-genkey-alias tomcat-keyalg RSA-keystore / home/gzr/tomcat.keystore
My command execution record is as follows, (premise: create a directory locally, otherwise it will fail)
The result is that the corresponding file is generated, as follows:
# Port number server.port: 844 certificate name server.ssl.key-store: e:\ work\ rave\ tomcat.keystore# KeyStore password server.ssl.key-store-password: duan123server.ssl.keyStoreType: JKSserver.ssl.keyAlias: tomcat
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.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.boot.context.embedded.EmbeddedServletContainerFactory;import org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory;import org.springframework.context.annotation.Bean SpringBootApplicationpublic class SpringbootmyApplication {public static void main (String [] args) {SpringApplication.run (SpringbootmyApplication.class, args);} / * it's for set http url auto change to https * / @ Bean public EmbeddedServletContainerFactory servletContainer () {TomcatEmbeddedServletContainerFactory tomcat=new TomcatEmbeddedServletContainerFactory () {@ Override protected void postProcessContext (Context context) {SecurityConstraint securityConstraint=new SecurityConstraint () SecurityConstraint.setUserConstraint ("CONFIDENTIAL"); / / confidential SecurityCollection collection=new SecurityCollection (); collection.addPattern ("/ *"); securityConstraint.addCollection (collection); context.addConstraint (securityConstraint);}}; tomcat.addAdditionalTomcatConnectors (httpConnector ()); return tomcat } @ Bean public Connector httpConnector () {Connector connector=new Connector ("org.apache.coyote.http11.Http11NioProtocol"); connector.setScheme ("http"); connector.setPort (8080); connector.setSecure (false); connector.setRedirectPort (8443); return connector }} this is the answer to the question about how to configure ssl in Springboot. I hope the above content can be of some help to you. If you still have a lot of doubts to be solved, you can follow the industry information channel for more related knowledge.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.