@author crossoverJie
| 10 | * |
| 11 | */ |
| 12 | @SpringBootApplication |
| 13 | public class Application { |
| 14 | |
| 15 | private final static Logger LOGGER = LoggerFactory.getLogger(Application.class); |
| 16 | |
| 17 | |
| 18 | public static void main(String[] args) throws Exception { |
| 19 | SpringApplication.run(Application.class, args); |
| 20 | LOGGER.info("start ok!"); |
| 21 | |
| 22 | } |
| 23 | |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected