Use-case:
I have a Spring Boot application v2.7.x. For the security, i am trying to configure a SecurityFilterChain that will point to an authentication provider (LDAP) that is configured in WebLogic v14.x.x.
The WebLogic configuration for the LDAP has been done here:
Security Realms > myrealm > Providers > Authentication tab
Question:
How do i point the Spring Boot Application to use that WebLogic Authentication Provider i.e the Spring Security configuration. Probably, something like here under LDAP Authentication section?
As a side-note, I will probably be needing these:
pom.xml
<dependency>
<groupId>com.oracle.weblogic</groupId>
<artifactId>weblogic-server-pom</artifactId>
<version>12.2.1.4</version> <!-- Use the appropriate version for your WebLogic installation -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.oracle.weblogic</groupId>
<artifactId>wlthint3client</artifactId>
<version>12.2.1.4</version> <!-- Use the appropriate version for your WebLogic installation -->
<scope>provided</scope>
</dependency>
weblogic.xml
<weblogic-web-app xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app">
<security-role-assignment>
<role-name>authenticated-users</role-name>
<principal-name>users</principal-name>
</security-role-assignment>
</weblogic-web-app>
Note:
I do not want to use an ActiveDirectoryLdapAuthenticationProvider that is pointing directly to the AD.
The final answer would probably be an extension of these 2 SO posts, this and this.

I have a spring boot application deployed in weblogic 12.2.1.4 that uses weblogic authentication. I have it configured as below...
src/main/webapp/WEB-INF/web.xml
src/main/webapp/WEB-INF/weblogic.xml
WebSecurityConfig - this is where spring security is configured to use weblogic authentication via the J2eePreAuthenticatedProcessingFilter
LoginController
login.ftlh - my freemarker template for the login page.
pom.xml spring boot dependencies