You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
457 B
20 lines
457 B
package cn.xluobo;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
import java.net.UnknownHostException;
|
|
|
|
//@SpringBootApplication
|
|
//@EnableConfigurationProperties({UploadConfigProperties.class, AddressProperties.class})
|
|
//@EnableScheduling
|
|
//@EnableAsync
|
|
public class BusinessServerApplication {
|
|
|
|
public static void main(String[] args) throws UnknownHostException {
|
|
SpringApplication.run(BusinessServerApplication.class, args);
|
|
}
|
|
|
|
}
|
|
|
|
|