2013-07-22 14:40:50 +01:00
|
|
|
package ${packageName};
|
|
|
|
|
|
2013-08-19 14:19:01 +01:00
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
2013-07-22 14:40:50 +01:00
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
2014-03-06 09:32:42 +00:00
|
|
|
import org.springframework.context.annotation.Configuration;
|
2013-07-22 14:40:50 +01:00
|
|
|
|
2014-03-06 09:32:42 +00:00
|
|
|
@Configuration
|
2013-07-22 14:40:50 +01:00
|
|
|
@ComponentScan
|
|
|
|
|
@EnableAutoConfiguration
|
|
|
|
|
public class Application {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(Application.class, args);
|
|
|
|
|
}
|
|
|
|
|
}
|