TransportInfoApplication.java
481 Bytes
package com.sl;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cloud.openfeign.EnableFeignClients;
@EnableCaching
@EnableFeignClients
@SpringBootApplication
public class TransportInfoApplication {
public static void main(String[] args) {
SpringApplication.run(TransportInfoApplication.class, args);
}
}