Add YamlListApplication class

This commit is contained in:
azhwani 2020-07-04 11:57:52 +01:00
parent 535c88153d
commit ce80343050
1 changed files with 13 additions and 0 deletions

View File

@ -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);
}
}