2018-01-12 15:08:28 +02:00
|
|
|
package com.baeldung.oauth2;
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2019-01-02 22:13:35 -02:00
|
|
|
import org.springframework.context.annotation.PropertySource;
|
2018-01-12 15:08:28 +02:00
|
|
|
|
2019-01-02 22:13:35 -02:00
|
|
|
@PropertySource("classpath:default-application.properties")
|
2018-01-12 15:08:28 +02:00
|
|
|
@SpringBootApplication
|
|
|
|
public class SpringOAuthApplication {
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
SpringApplication.run(SpringOAuthApplication.class, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|