Skip to content
Advertisement

Spring Boot and OAuth2 server

I’m trying to implement a simple OAuth2 server with Spring Boot. In the first step I added in the main class the annotation @EnableAuthorizationServer

JavaScript

and I use the “application.yml” file to configure all the OAuth2 elements.

JavaScript

With this configuration everything works fine.
In the second step I tried to switch the configuration from yml file to java class.
These are the classes that I created

JavaScript

and

JavaScript

With this configuration the app doesn’t work. When I run the project via maven I see that Spring generate a new “client-id” and “client-secret” instead to use “mobile” and “pin”

JavaScript

this is the log

JavaScript

Why the java class configuration doesn’t work?
Thanks

Advertisement

Answer

The solution of the problem is at this link

Spring Boot: Configuration Class is simply ignored and not loaded

My config files were in a different package so I added the

@ComponentScan(basePackages = “my.config.package”)

in the main class after

@SpringBootApplication

and it works.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement