2024-01-15 20:31:14 +08:00
|
|
|
package com.njcn;
|
|
|
|
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration;
|
|
|
|
|
import org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration;
|
2024-01-17 08:41:08 +08:00
|
|
|
import org.springframework.context.annotation.DependsOn;
|
2024-01-15 20:31:14 +08:00
|
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* pqs
|
|
|
|
|
*
|
|
|
|
|
* @author cdf
|
|
|
|
|
* @date 2022/11/10
|
|
|
|
|
*/
|
|
|
|
|
@Slf4j
|
2024-01-16 15:51:00 +08:00
|
|
|
@EnableAsync
|
2024-01-17 08:41:08 +08:00
|
|
|
@DependsOn("proxyMapperRegister")
|
2024-01-15 20:31:14 +08:00
|
|
|
@MapperScan("com.njcn.**.mapper")
|
2024-08-13 16:15:59 +08:00
|
|
|
@SpringBootApplication(scanBasePackages = "com.njcn")
|
2024-01-15 20:31:14 +08:00
|
|
|
public class InfluxDataApplication {
|
|
|
|
|
|
2024-01-17 08:41:08 +08:00
|
|
|
public static void main(String[] args) {
|
2024-01-15 20:31:14 +08:00
|
|
|
SpringApplication.run(InfluxDataApplication.class, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|