Matt Damon
Matt Damon

Reputation: 333

Disable Weblogic 12c own authentication

I've got a Spring Boot application running fine locally in tomcat using Spring security which authenticates users from a database. When I deploy this to Weblogic it seems like weblogic is adding it's own authentication on top. Is there a way of disabling this per managed server? So a call to the URL will use the Spring security and not the Weblogic one?

I understand you can use the built in authentication from Weblogic but as we may move to tomcat in the near future I'd rather use Spring authentication in the mean time. Plus Weblogic is an absolute pain to use!

Upvotes: 0

Views: 3257

Answers (1)

Yogi
Yogi

Reputation: 1895

You can disable Weblogic authentication for your domain by adding below properties in your weblogic config.xml:

<enforce-valid-basic-auth-credentials>false</enforce-valid-basic-auth
  -credentials>

For disable weblogic authenication follow this link:

Upvotes: 1

Related Questions