com.tencent.devops.leaf.server.LeafServerApplication Maven / Gradle / Ivy
package com.tencent.devops.leaf.server;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ImportResource;
@SpringBootApplication
@ImportResource("classpath:leaf-application.xml")
public class LeafServerApplication {
public static void main(String[] args) {
SpringApplication.run(LeafServerApplication.class, args);
}
}