Spring *FactoryBean

1.ListFactoryBean类

在Spring的bean配置文件中创建一个具体的列表集合类(ArrayList和LinkedList)。
这里有一个 ListFactoryBean 示例,在运行时它将实例化一个ArrayList,并注入到一个 bean 属性


        
            
                
                    java.util.ArrayList
                
                
                    
                        one
                        2
                        three
                    
                
            
        
    

util 模式和

    
        
            
                one
                2
                three
            
        
    

2.SetFactoryBean 类

可在 Spring bean 配置文件创建一个具体的Set集合(HashSet 和 TreeSet)

    
        
            
                
                    java.util.HashSet
                
                
                    
                        one
                        2
                        three
                    
                
            
        
    

util的模式 和

    
        
            
                one
                2
                three
            
        
    

3.MapFactoryBean 类
在Spring的bean配置文件中创建一个具体的Map集合类(HashMap和TreeMap

    
        
            
                
                    java.util.HashMap
                
                
                    
                        
                        
                        
                    
                
            
        
    

util 的模式和

    
        
            
                
                
                
            
        
    

你可能感兴趣的:(Spring *FactoryBean)