12345678910111213141516171819202122 |
- package thyyxxk.webserver;
- import com.dtflys.forest.springboot.annotation.ForestScan;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.boot.context.properties.EnableConfigurationProperties;
- import org.springframework.scheduling.annotation.EnableScheduling;
- import org.springframework.transaction.annotation.EnableTransactionManagement;
- /**
- * @author dj
- */
- @SpringBootApplication
- @EnableTransactionManagement
- @EnableScheduling
- @EnableConfigurationProperties
- @ForestScan(basePackages = "thyyxxk.webserver.service.externalhttp")
- public class WebServerApplication {
- public static void main(String[] args) {
- SpringApplication.run(WebServerApplication.class, args);
- }
- }
|