Sumit Ghosh
Sumit Ghosh

Reputation: 514

Spring Boot project in Eclipse Oxygen

I am creating a Spring Boot Application in eclipse oxygen.I have followed the following steps:

File->New->Spring Boot->Spring Starter Project

When the wizard opens up I am getting the following error::

SunCertPathBuilderException: unable to find valid certification path to requested target

enter image description here

I am connected to Internet and also able to connect to Eclipse Market Place

Can anyone figure out the issue??

Upvotes: 2

Views: 1002

Answers (2)

cactuschibre
cactuschibre

Reputation: 2375

I don't work with Eclipse anymore ... But, which Java version are you using ? This error, not especially linked to Eclipse, appears when JCE (Java Cryptography Extension) is not present. Did you try to install it ?

  • Download JCE
  • Copy local_policy.jar and US_export_policy.jar to $JAVAHOME/jre/lib/security.

Upvotes: 0

Dark Knight
Dark Knight

Reputation: 8357

I too encountered the exactly same issue earlier. To make it work, changed Network Connections mode to Manual. Follow this path.

Window -> Preferences -> Network Connections Change mode to Manual

Upvotes: 1

Related Questions