Spring之 Auto-Wiring All Beans of Compatible Type

Auto-Wiring All Beans of Compatible Type

@Autowired 注解按类型(type)依赖入住的时候,可以把类型兼容的所有类注入到数组、链表、map等集合数据结构中。如:mybatis中TypeHandler为例:

package com.doctor.practice01;

import java.sql.CallableStatement;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

public interface TypeHandler<T> {

    void setParameter(PreparedStatement ps, int i, T parameter, Object jdbcType) throws SQLException;

    T getResult(ResultSet rs, String columnName) throws SQLException;

    T getResult(ResultSet rs, int columnIndex) throws SQLException;

    T getResult(CallableStatement cs, int columnIndex) throws SQLException;

}
package com.doctor.practice01;

import java.sql.CallableStatement;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

import org.springframework.stereotype.Component;

/**
 * @author sdcuike
 *
 * @time 2016年2月10日 下午9:57:37
 */

@Component("String")
public class StringTypeHandler implements TypeHandler<String> {

    @Override
    public void setParameter(PreparedStatement ps, int i, String parameter, Object jdbcType) throws SQLException {
        // TODO Auto-generated method stub

    }

    @Override
    public String getResult(ResultSet rs, String columnName) throws SQLException {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public String getResult(ResultSet rs, int columnIndex) throws SQLException {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public String getResult(CallableStatement cs, int columnIndex) throws SQLException {
        // TODO Auto-generated method stub
        return null;
    }

}
package com.doctor.practice01;

import java.sql.CallableStatement;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Timestamp;

import org.springframework.stereotype.Component;

/**
 * @author sdcuike
 *
 * @time 2016年2月10日 下午9:58:23
 */

@Component("Timestamp")
public class SqlTimestampTypeHandler implements TypeHandler<Timestamp> {

    @Override
    public void setParameter(PreparedStatement ps, int i, Timestamp parameter, Object jdbcType) throws SQLException {
        // TODO Auto-generated method stub

    }

    @Override
    public Timestamp getResult(ResultSet rs, String columnName) throws SQLException {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public Timestamp getResult(ResultSet rs, int columnIndex) throws SQLException {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public Timestamp getResult(CallableStatement cs, int columnIndex) throws SQLException {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public String toString() {
        // TODO Auto-generated method stub
        return super.toString();
    }

}

简单例子,我们要把TypeHandler所有的子类,这里指的是StringTypeHandler、SqlTimestampTypeHandler注入到list和map数据结构中:

package com.doctor.practice01;

import java.util.List;
import java.util.Map;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

/**
 * @author sdcuike
 *
 * @time 2016年2月10日 下午10:00:26
 */

@Component
public class TypeHandlerUtil {

    @SuppressWarnings({ "rawtypes", "unused" })
    private static List<TypeHandler> typeHandlers;

    @SuppressWarnings({ "rawtypes", "unused" })
    private static Map<String, TypeHandler> typeHandlerMap;

    @Autowired
    @SuppressWarnings("rawtypes")
    public void setTypeHandlerMap(Map<String, TypeHandler> typeHandlerMap) {
        TypeHandlerUtil.typeHandlerMap = typeHandlerMap;
    }

    @Autowired
    @SuppressWarnings("rawtypes")
    public void setTypeHandlers(List<TypeHandler> typeHandlers) {
        TypeHandlerUtil.typeHandlers = typeHandlers;
    }

    public static Map<String, TypeHandler> getTypeHandlerMap() {
        return typeHandlerMap;
    }

    public static List<TypeHandler> getTypeHandlers() {
        return typeHandlers;
    }
}

我们测试一下:

package com.doctor.practice01;

import java.util.List;

import org.springframework.context.annotation.AnnotationConfigApplicationContext;

/**
 * @author sdcuike
 *
 * @time 2016年2月10日 下午9:49:16
 *
 *       Auto-Wiring All Beans of Compatible Type
 *
 *
 */
public class AutoWiringAllBeansOfCompatibleType {
    public static void main(String[] args) {
        AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext();
        applicationContext.scan("com.doctor.practice01");
        applicationContext.refresh();
        TypeHandlerUtil typeHandlerUtil = applicationContext.getBean(TypeHandlerUtil.class);
        List<TypeHandler> typeHandlers = typeHandlerUtil.getTypeHandlers();
        typeHandlers.forEach(System.out::println);
        // [email protected]
        // [email protected]

        typeHandlerUtil.getTypeHandlerMap().forEach((k, v) -> System.out.println("k:" + k + " v:" + v));

        // k:Timestamp v:[email protected]
        // k:String v:[email protected]

    }
}

注:注入map数据结构的时候,k指的是bean的name。

这样,当我们增加了一个类型的子类的时候,扫描自动注入就带来了便利,而不用我们手动像mybatis一样,配置在一个TypeHandler xml文件中,读取配置的时候再放到一个map结构中,利用spring就带来了便利。

时间: 2024-12-29 23:38:04

Spring之 Auto-Wiring All Beans of Compatible Type的相关文章

Spring配置报错- 元素 &#39;beans&#39; 必须不含字符 [子级]

Caused by: org.xml.sax.SAXParseException; lineNumber: 34; columnNumber: 9; cvc-complex-type.2.3: 元素 'beans' 必须不含字符 [子级], 因为该类型的内容类型为"仅元素". 在学习Spring的过程中,配置bean的过程中抛出以上错误, 根据报错提示可以看出是beans元素的子元素中出现了"元素"之外的内容,因此开始排查是否出现了非法字符,,排查到最后发现是自己写

IntelliJ Idea取消Could not autowire. No beans of &#39;xxxx&#39; type found的错误提示

1.问题描述 在Idea的spring工程里,经常会遇到Could not autowire. No beans of 'xxxx' type found的错误提示.但程序的编译和运行都是没有问题的,这个错误提示并不会产生影响.但红色的错误提示在有些有强迫症的程序员眼里,多多少少有些不太舒服. 2. 原因 spring auto scan配置,在编辑情况下,无法找不到对应的bean,于是提示找不到对应bean的错误.常见于mybatis的mapper,如下: <!-- mapper scanne

IntelliJ Idea解决Could not autowire. No beans of &#39;xxxx&#39; type found的错误提示

本文转自:http://blog.csdn.net/u012453843/article/details/54906905 1.问题描述 在Idea的spring工程里,经常会遇到Could not autowire. No beans of 'xxxx' type found的错误提示.但程序的编译和运行都是没有问题的,这个错误提示并不会产生影响.但红色的错误提示在有些有强迫症的程序员眼里,多多少少有些不太舒服. 2. 原因 原因可能有两个,第一个是IntellijIDEA本身工具的问题.第二

Could not autowire. No beans of ‘xxx” type found(三种方法)

我当时提示错误是,不影响使用,可是就是报错让人不爽. Could not autowire. No beans of 'RequestMappingHandlerMapping' type found. @Autowired private RequestMappingHandlerMapping requestMappingHandlerMapping; 后来改成@Resource注入,就不报错了, @Resourceprivate RequestMappingHandlerMapping r

Could not autowire. No beans of &#39;TbItemMapper&#39; type found. less... (Ctrl+F1) Checks autowiring prob

Intellij Idea开发工具在@Autowired或者@Resource注入XxxMapper接口时报如下错误: Could not autowire. No beans of 'TbItemMapper' type found. less... (Ctrl+F1)  Checks autowiring prob 解决方法如下,在 Intellij Idea中设置一下: Settings - Editor - Inspections - Spring - Spring Core - Cod

IDEA解决&quot;Could not autowire. No beans of &#39;xxxx&#39; type found&quot;的错误提示

使用IDEA开发Spring Boot项目的时候,利用注解的方式整合Mybatis.在运行的时候有可能会出现"Could not autowire. No beans of 'xxxx' type found"的错误提示,这个提示的意思就是没有找到该类型的bean,也就是说创建dao层的实例失败. 这种情况一般是配置注解的时候没有扫描到mapper层,但是有的时候明明路径配置没有问题还是会出现这个问题,这个时候有可能是因为IDEA本身的问题. 解决办法是在mapper层添加注解@Rep

IDEA出现Could not autowire. No beans of &#39;xxx&#39; type found.解决

Plan A File → Project Structure... Facets → Spring → 右键删除即可 Plan B File → Settings → Editor → Inspections → Spring 把Mixed换成Warning即可. Plan C settings → inspections → spring → spring core → code → autowiring for bean class,右键替换成 warning IDEA出现Could no

Field injection is not recommended和Could not autowired. No beans of &#39;xxx&#39; type found.

目录 问题 解决办法 备注 问题 在项目中,我们使用Spring的@Autowired注解去引入其他类时有时候阿里的编码规约插件就会提示:"Field injection is not recommended"或"Could not autowired. No beans of 'xxx' type found.",引用类的变量名会有红色的波浪线,虽然不影响程序执行,但是强迫症看着还是难受. 解决办法 将"@Autowired"注解换为"

Spring 动态代理 之 but was actually of type &#39;com.sun.proxy.$Proxy14 Exception

今天在写Spring的引介代理的时候,报了一个错: Exception in thread "main" org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'inter1' is expected to be of type 'com.dengchengchao.springtest.intertest.Inter1Impl' but was actually of type 'co