648540858
2020-11-09 2e9b4b4e5e86c84088c45563cd61d18d8c7e5fea
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);
    }
 
}