package com.zy.acs.hex; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.ComponentScan; @ComponentScan(basePackages = {"com.zy.component", "com.zy.acs"}) @SpringBootApplication public class HexApplication { public static void main(String[] args) { SpringApplication.run(HexApplication.class, args); } }