I am a Solivagant
Lofter    Posts     新文章     文章管理     新日记     日记管理

[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>

 

posted @ 2018-05-30 21:46  宛如ZZ  阅读(121)  评论(0编辑  收藏  举报