张磊磊
2023-11-08 5927b182e31c9599a4da4dfa0781e494876cf69e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.thhy;
 
import com.thhy.general.config.mysql.MysqlConfig;
import org.apache.rocketmq.spring.autoconfigure.RocketMQAutoConfiguration;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
import org.springframework.boot.autoconfigure.rsocket.RSocketMessagingAutoConfiguration;
import org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration;
 
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class, RocketMQAutoConfiguration.class})
public class FileApplication {
    public static void main(String[] args) {
        SpringApplication.run(FileApplication.class,args);
    }
}