2019-12-24 16:35:22 +02:00
|
|
|
package com.baeldung;
|
|
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
|
2020-10-25 23:52:08 -04:00
|
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
2019-12-24 16:35:22 +02:00
|
|
|
|
|
|
|
|
@SpringBootApplication
|
2020-10-25 23:52:08 -04:00
|
|
|
@EnableScheduling
|
2019-12-24 16:35:22 +02:00
|
|
|
public class SpringBootApp extends SpringBootServletInitializer {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(SpringBootApp.class, args);
|
|
|
|
|
}
|
|
|
|
|
}
|