Files
spring-boot-rest/spring-boot-artifacts/src/main/java/com/baeldung/properties/ExternalPropertyFileLoader.java
2019-09-27 01:07:06 +05:30

19 lines
493 B
Java

package com.baeldung.properties;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
@SpringBootApplication
public class ExternalPropertyFileLoader {
@Autowired
ConfProperties prop;
public static void main(String[] args) {
new SpringApplicationBuilder(ExternalPropertyFileLoader.class).build()
.run(args);
}
}