@SpringBootApplication@EnableEurekaClient@ComponentScan("com.fo")
@ComponentScan(“com.fo”) 加了以下注解都会被ComponentScan扫描到 @Component @Configuration @Bean @Service
使用@Service注解, 将这个Service交给Spring来管理
@Service@Resource 或者 @Autowired
Mapper扫描注解
@MapperScan("com.fo.server.mapper")
读取自定义配置项
@Value("${test.hello}")private String testHello;
请求注解
@RequestMapping("/Test")@GetMapping("/Test")@PostMapping("/Test")
Aspect AOP
@Aspect@Component// Component是SpringBoot 最基本的注解就是表示你要把这个类交给spring来管理
