* Cleaned shared properties in spring-5-security-oauth module, and made some final tunings on authorization service and the resource server * Added and modified example for webclient-oauth2 * Cleaned authorization service and resource service for webclient and oauth2 article * Added examples for auth code with client and with login cleaned properties and packages * Added examples fow webclient + oauth2
16 lines
456 B
Java
16 lines
456 B
Java
package com.baeldung.oauth2;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.context.annotation.PropertySource;
|
|
|
|
@PropertySource("classpath:default-application.properties")
|
|
@SpringBootApplication
|
|
public class SpringOAuthApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(SpringOAuthApplication.class, args);
|
|
}
|
|
|
|
}
|