* Clone Article Initial Version * Customized RestTemplate to access HTTPS Rest Service * Customized RestTemplate to access HTTPS Rest Service * removed unused files * removed unused files * removed unused changes * Added Customized RestTemplate * Formatted java components * Create application-ssl.properties added app props ssl * Secured REST Service and Customized Rest Template Secured REST Service and Customized Rest Template * Delete CustomRestTemplateConfiguration.java * Delete RestTemplateClientApplication.java * Delete RestTemplateClientController.java * Delete application-ssl-client.properties * Format changes Format changes * Update CustomRestTemplateConfiguration.java * Update RestTemplateClientApplication.java * Update RestTemplateClientController.java * Update HttpsEnabledApplication.java * Update WelcomeController.java * Update HttpsEnabledApplication.java * Update CustomRestTemplateConfiguration.java * Update RestTemplateClientController.java * Update RestTemplateClientApplication.java Co-authored-by: PADMAJA <PADMAJA@192.168.100.7>
14 lines
394 B
Properties
14 lines
394 B
Properties
http.port=8080
|
|
|
|
server.port=8443
|
|
|
|
server.servlet.context-path=/
|
|
|
|
# The format used for the keystore
|
|
server.ssl.key-store-type=PKCS12
|
|
# The path to the keystore containing the certificate
|
|
server.ssl.key-store=classpath:keystore/baeldung.p12
|
|
# The password used to generate the certificate
|
|
server.ssl.key-store-password=password
|
|
# The alias mapped to the certificate
|
|
server.ssl.key-alias=baeldung |