whyclxw
2024-12-23 93be23aaba651076443b87e662b0232dd1a03b75
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.whyc;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
 
//(exclude = DataSourceAutoConfiguration.class)
@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)
@EnableWebMvc
@ServletComponentScan(basePackages = {"com.whyc.filter"})
public class FbxAnalysisApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(FbxAnalysisApplication.class, args);
    }
 
}