SpringMvc 之自动注解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringMvc 之自动注解相关的知识,希望对你有一定的参考价值。
<context:component-scan/> 元素会扫描指定的包极其所有子包,并查找能够自动注册为Spring Bean的类.base-package属性标识了<context:component-scan/> 元素所扫描的包
<context:component-scan base-package="org.test"> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" /> </context:component-scan>
会自动检测的标注Bean
@Component ---通用构造型注解
@Controller--标识为 spring mvc 控制器
@Repository --标识为数据仓储
@Service--标识为服务
过滤组件扫描
过滤器组件
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" />---不需要注册为bean
以上是关于SpringMvc 之自动注解的主要内容,如果未能解决你的问题,请参考以下文章
springmvc之@Controller@RequestMapping等注解解说
springmvc学习笔记(11)-springmvc注解开发之简单参数绑定
springmvc学习笔记(13)-springmvc注解开发之集合类型参数绑定