Lawrence
2020-10-19 5ab432856deb79c26a3b4ea05e8582acf9e80cdc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.genersoft.iot.vmp;
 
import java.util.logging.LogManager;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
 
@SpringBootApplication
//@EnableEurekaClient
//@EnableTransactionManagement
//@EnableFeignClients(basePackages = { "com.genersoft.iot.vmp", "org.integrain" })
//@ServletComponentScan("com.genersoft.iot.vmp")
@EnableAutoConfiguration
public class VManageBootstrap extends LogManager {
    public static void main(String[] args) {
        SpringApplication.run(VManageBootstrap.class, args);
    }
 
}