zoukankan      html  css  js  c++  java
  • Spring学习笔记--自动检测

    要使用自动检测,我们需要用到<context:annotation-scan>标签。<context:annotation-scan>元素除了完成与<context:annotation-config>一样的工作,还允许Spring自动检测Bean和定义Bean。此时我们只需要很少量的代码来完成配置:

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context-3.0.xsd">
            
      <context:annotation-scan
          base-package="com.moonlit.myspring" />
    
      <bean id="guanyu" class="com.moonlit.myspring.GuanYu" />
        
    </beans>
  • 相关阅读:
    12.20个人任务总结
    典型用户和用户场景描述
    12.19冲刺总结
    12月18日任务总结
    构建之法阅读笔记02
    构建之法阅读笔记03
    构建之法阅读笔记01
    软件工程个人作业01
    内容提供者
    Pull解析Xml
  • 原文地址:https://www.cnblogs.com/moonlightpoet/p/5572530.html
Copyright © 2011-2022 走看看