Spring tool suite- SunCertPathBuilderException: unable to find valid certification path to requested target

后端 未结 8 637
予麋鹿
予麋鹿 2021-01-13 06:12

I am working on STS and while creating a new spring-boot project, it shows following error:

 SunCertPathBuilderException: unable to find valid certification          


        
相关标签:
8条回答
  • 2021-01-13 06:48

    The best thing to do in this case is open https://start.spring.io/ in browser and

    and fill in your project name in Artifact field and your project base package in Group field click on

    Generate project button

    that will download your-project-name.zip file into your downloads folder . now extract this file into your sts workspace or anywhere you like .

    now import the project in STS as Existing maven project

    You are done

    0 讨论(0)
  • 2021-01-13 06:50

    It would seem like the http now gets redirected to https. So changing https to http may not work. I am barely familiar with digital certificates. However, I have simply listed what I had to do to get it to work for me. This is perhaps what @Strelok has suggested.

    I am on Windows 10 and JDK 1.8.0_144 64bit. I am also behind a corporate proxy. I did the following to get it to work for me. If you are in a similar situation it may work for you.

    Export the corporate certificate (There may be other easier ways of doing this)

    1. On Chrome, I went to https://start.spring.io
    2. On the location bar clicked on the 'Lock' symbol next to https.
    3. Selected 'Certificate(Valid)' on the ensuing pop-up.
    4. On the resulting dialog box, clicked on the 'Certificate Path' tab, from under certificate path tree selected the root node, and then clicked on 'View Certificate'
    5. On the resulting dialog box, clicked on the 'Details' tab and then clicked on 'Copy to File'
    6. This brings up the 'Export wizard', clicked on 'Next'.
    7. Left the certificate format to default 'DER encoded..', clicked on 'Next'.
    8. Provided file name (.cer extension) for the certificate.
    9. Clicked Finish.

    The above steps exported a certificate to a file that I imported into truststore (cacerts).

    To import

    • Opened a 'Command' prompt as Administrator to import the certificate
    • Went to bin directory of Java installation (this step is not needed if jre/bin is in your path)
    • Ran the following:

      C:\Program Files\Java\jre1.8.0_144\bin>keytool -importcert -alias your-alias -keystore "C:\Program Files\Java\jre1.8.0_144\lib\security\cacerts" -storepass changeit -file C:\certificate-file-location\saved-certificate-file.cer

    (Substitute your java location, certificate file location and certificate file name as appropriate. The 'storepass' should be 'changeit'.)

    Restarted STS

    0 讨论(0)
提交回复
热议问题