Untitled
unknown
plain_text
a year ago
598 B
7
Indexable
@Slf4j @EnableAspectJAutoProxy @EntityScan(basePackages = {"com.sec.config.core.domain"}) @EnableJpaRepositories(basePackages = {"com.sec.config.core.repository"}) @SpringBootApplication(scanBasePackages = {"com.sec.config"}) public class DashboardApiApplication extends SpringBootServletInitializer { public static void main(String[] args) { try { new SpringApplicationBuilder(DashboardApiApplication.class).build().run(args); } catch (RuntimeException e) { log.error("Failed to start application e={}", e.getMessage()); } } }
Editor is loading...
Leave a Comment