码迷,mamicode.com
首页 > 编程语言 > 详细

[Spring] Annotation注释

时间:2018-05-30 22:40:58      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:conf   引用   service   pre   使用   not   contex   this   uda   

 

 

自动扫描:

在<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注释

标签:conf   引用   service   pre   使用   not   contex   this   uda   

原文地址:https://www.cnblogs.com/zienzir/p/9113743.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!