2018-01-22 18:41:03 -05:00
|
|
|
package com.baeldung.loginextrafieldssimple;
|
2018-01-18 05:13:33 -05:00
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
|
|
|
|
|
@SpringBootApplication
|
2018-01-22 18:41:03 -05:00
|
|
|
public class ExtraLoginFieldsApplication {
|
2018-01-18 05:13:33 -05:00
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
2018-01-22 18:41:03 -05:00
|
|
|
SpringApplication.run(ExtraLoginFieldsApplication.class, args);
|
2018-01-18 05:13:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|