SpringMVC中注解的使用

启用注解,是注解生效

先说一下有一个use-default-filters属性,改属性默认为true,这就意味着会扫描指定包下的全部的标有@Component的类,并注册成bean.也就是@Component的子注解@Service,@Reposity,@Controller等

你可能感兴趣的:(SpringMVC)