Add YamlListApplication class
This commit is contained in:
parent
535c88153d
commit
ce80343050
|
@ -0,0 +1,13 @@
|
||||||
|
package com.baeldung.properties.yamllist;
|
||||||
|
|
||||||
|
import org.springframework.boot.SpringApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
|
||||||
|
@SpringBootApplication
|
||||||
|
public class YamlListApplication {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
SpringApplication.run(YamlListApplication.class, args);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue