springboot v
2019-08-19 本文已影响0人
jiahzhon
- 项目启动类中的@ComponentScan 注解,除了扫描@Service , @Repository 、@Component 、@Controller 和@RestController 等之外,也会扫描@Configuration 注解的类。
- @ControllerAdvice 就是@Controller 的增强版。@ControllerAdvice 主要用来处理全局数据, 一般搭配@ExceptionHandler、@ModelAttribute 以及@InitBinder 使用。