Indraneel Bende
Indraneel Bende

Reputation: 3486

Spring cloud config -Custom location of jce jar files

For reasons outside my control, I am not allowed to edit the Jre and add the two jce jars to it. Is there anyway I can tell my config server when it starts up that the location of those two jar files is in a custom location? I have tried the following option- Added it in the root of application directory.

But. Spring is not able to pick it up.

Thank you in advance.

Upvotes: 0

Views: 445

Answers (2)

David
David

Reputation: 21

It's not a JRE problem (you need to copy the two jce jars to JRE security library. The Oracle website already described the procedure. However, I guess the question was asking, how to do so to the embedded tomcat within a spring boot application.

Read this post for further informations.

Upvotes: 0

spencergibb
spencergibb

Reputation: 25177

Not that I know of. This is not a config server problem, but a JRE problem. Later version of the JRE ship with JCE policy files and later even still it's enabled by default https://golb.hplar.ch/p/JCE-policy-changes-in-Java-SE-8u151-and-8u152

Upvotes: 1

Related Questions