All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.benma666.sjsj.SjsjApplication Maven / Gradle / Ivy

package cn.benma666.sjsj;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;

@SpringBootApplication
//多个包则采用逗号分割,第一个必须保留,eg:"cn.benma666", "com.xxxx.xxx"
@ComponentScan({"cn.benma666"})
public class SjsjApplication {

	public static void main(String[] args) {
		SpringApplication.run(SjsjApplication.class, args);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy