package com.terra.lfdcexp; import com.terra.lfdcexp.config.WebSocketC; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import springfox.documentation.swagger2.annotations.EnableSwagger2; @SpringBootApplication @EnableSwagger2 public class LfdcexpApplication { // @Autowired // WebSocketC webSocketC; public static void main(String[] args) { SpringApplication.run(LfdcexpApplication.class, args); } }