#164 Add main class required by the spring-boot-maven-plugin

This commit is contained in:
Antoine Rey 2016-06-23 19:46:56 +02:00
parent a6e81a51a0
commit e9f5f7b541

View file

@ -54,4 +54,8 @@ public class PetClinicApplication extends SpringBootServletInitializer {
return application.sources(PetClinicApplication.class); return application.sources(PetClinicApplication.class);
} }
public static void main(String[] args) throws Exception {
SpringApplication.run(PetClinicApplication.class, args);
}
} }