Https with TLS and springboot | Microservices | Java Expert

Поділитися
Вставка
  • Опубліковано 31 гру 2024

КОМЕНТАРІ • 10

  • @javaexpert333
    @javaexpert333  2 роки тому +2

    In video, i have mentioned as Asymmetric key but it is actually Symmetric key (time 5:30)

  • @prithvisinh
    @prithvisinh 2 роки тому +2

    Good explanation. One correction needed - At 5:30, the server generates a symmetric key and NOT an asymmetric key.

    • @javaexpert333
      @javaexpert333  2 роки тому

      My bad. Good observation ps z. Let me update it. Thank you for your support and keep supporting

  • @dineshyeshamoni5426
    @dineshyeshamoni5426 Рік тому

    Simply explained.helpful info.

  • @GauravKumar-dy5ch
    @GauravKumar-dy5ch 2 роки тому +2

    please continue this series.

  • @TheShawnm66
    @TheShawnm66 4 місяці тому

    Thank you for the video - I do have a quick question about the property - server.ssl.key-store-password
    If you notice the password is in "plain text" and not encrypted, is there a way to encrypt the password? Is it NOT a security risk that the password is in plain text?
    Is it even possible for a "bad actor" to unpack a JAR file and see what's in the application.properties file?
    I have not been able to find anything on the web that addresses this issue/question/problem.
    Any response would be appreciated. Thanks again.

    • @javaexpert333
      @javaexpert333  3 місяці тому

      There any many ways, we can externalize the password
      1. We can use any of vaulting tool
      2. If you are using deployment pipe lines, then you can use pipeline secrets
      3. We can configure secrets in server bash profile and we can keep place holder in properties

  • @davidvalencia2752
    @davidvalencia2752 Рік тому

    where is the .jks file

    • @TheShawnm66
      @TheShawnm66 4 місяці тому

      Starting at min 9:32-ish he starts to generate the jks file, it is generated in E:\ then the file is copy'd into the "Project Path". Soon as the file is pasted there the application will be able to find it as defined in the property "server.ssl.key-store:classpath:javaexpert.jks"
      Hope that helps - I think it's right.