Spring常用注解
Spring注解扫描
<context:component-scan base-package="com.test"/>
@Service 用于标注业务层
@Controller 用于标注控制层
@Repository 用于标注数据访问组件,即DAO组件
@Component 创建类对象,相当于配置 bean 标签
@Autowired 默认按类型装配,Spring提供的
@Resource 默认按名称装配,Java提供的
@Value 获取properties文件中的内容
扫描@Transactional <tx:annotation-driven></tx:annotation-driven> aop相关注解扫描 <aop:aspectj-autoproxy></aop:aspectj-autoproxy> @RequestMapping等Spring mvc的注解扫描 <mvc:annotation-driven></mvc:annotation-driven>