美文网首页
@Service注解的使用

@Service注解的使用

作者: Ray雷磊 | 来源:发表于2017-09-10 15:32 被阅读0次

    @Service注解的使用

    首先,在applicationContext.xml文件中加一行:
    <context:component-scan base-package="com.hzhi.clas"/>

    加上这一行以后,将自动扫描路径下面的包,如果一个类带了@Service注解,将自动注册到Spring容器,不需要再在applicationContext.xml文件定义bean了,类似的还包括@Component、@Repository、@Controller。
    比如下面这个类:

    @Service("courseDAO")
    @Scope("prototype")
    public class CourseDAOImpl extends HibernateDaoSupport implements CourseDAO{ ...... }

    其作用就相当于applicationContext.xml文件里面的:
    <bean id="courseDAO" class="com.hzhi.course.dao.CourseDAOImpl" scope="prototype"> </bean>

    相关文章

      网友评论

          本文标题:@Service注解的使用

          本文链接:https://www.haomeiwen.com/subject/eqxtsxtx.html