6 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
107
views
Springboot/Tomcat Accepts Expired Certs
I have a couple of basic Springboot SSLBundle REST client and server applications using default settings - no customized ssl factories or anything. Everything works fine, i.e. they communicate, will ...
1
vote
0
answers
249
views
Issue passing a pem certificate (multi line string) retrieved from Vault to SpringBoot application.yml
What I would like to achieve is to retrieve a PEM certificate stored in Vault and configure it inside an application.yml file correctly so the SpringBoot app can read it.
This is a working sample (...
0
votes
0
answers
408
views
issue with spring.kafka.consumer.ssl.bundle properties not working for SpringBoot Kafka application
SpringBoot 3 announced the support for SslBundle.
I went to use this code with an app, trying to connect to a SSL kafka.
import java.util.HashMap;
import java.util.Map;
import org.apache.kafka.clients....
1
vote
2
answers
365
views
Can Spring Boot's SSLBundle work with certificates without CA (just mutual authenticated, not CA)?
I am using JDK 23, Spring Boot 3.4.1 . I create trust materials follow https://github.com/kirilarsov/mtls/blob/main/README.md and apply Spring Boot's SSLBundle feature (https://spring.io/blog/2023/06/...
0
votes
2
answers
108
views
Spring Boot's application.proprerties: Can I use server.ssl.key-store and SSLBundle spring.ssl.bundle.jks.mybundle.keystore.location at the same time?
I am using Spring Boot 3.4.1 , Java / JDK 23, Windows 10 pro x64. Spring Boot's application.proprerties: Can I use server.ssl.key-store
server.ssl.key-store-type=PKCS12
server.ssl.key-store=C:\\Users\\...
-1
votes
1
answer
267
views
Disable ssl bundle locally (override config with null)
I have spring boot application with kafka where ssl configuration I wanna replace with ssl bundle and it's work. But locally I wanna start without ssl.
Problem is in replacing configs with null. How ...