[Spring] Annotation注释

Posted zZ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Spring] Annotation注释相关的知识,希望对你有一定的参考价值。

 

 

自动扫描:

在<beans>标签内,

<context:annotation-config />允许使用注解

<context:component-scan base-package="test.sample.entity"></context:component-scan>

扫描test/sample/entity包下的所有类.

将其注册为 类名首字母小写的bean.

对于类中的类属性,可以通过bean中引用bean来解决.

    <bean id="uDao" class="dao.impl.UserDaoImpl">
        <!-- collaborators and configuration for this bean go here -->
    </bean>
    <bean id="us" class="service.impl.UserServiceImpl">
        <!-- 找到要注入的属性值 -->
        <property name="dao" ref="uDao"></property>
    </bean>

 

以上是关于[Spring] Annotation注释的主要内容,如果未能解决你的问题,请参考以下文章

注释的基本使用与文档注释的特殊功能

无法从Spring Controller访问Controller Annotation数据

如何扩展Spring Annotation @Transactional

Spring 的这些核心注解你了解吗?

Spring Data JPA - 创建动态查询注释

如果基于 Spring Annotation 的控制器在 jar 文件中,则它不起作用