Spring注解

需要支持spring的注解需要通过xml进行配置

<!-- 对注解事务的支持 -->
    <tx:annotation-driven transaction-manager="transactionManager" />
<!-- 注解驱动 -->
    <context:component-scan base-package="*.*" />


可用注解有:

有用于声明bean的Annotation:
@Component
@Controller(建议使用)
@Repository(建议使用)
@Service(建议使用)
有用于注入bean的Annotation:
@Autowired
@Qualifier
@Required
@Resource(建议使用)这是对jsr-250标准的实现

上面虽然很多注解都可以实现相同的功能,但我标注了建议使用的一些注解。

你可能感兴趣的:(Spring注解)