Spring 注入日期到bean属性

在Spring中,可以通过两种方式注入日期:

1. Factory bean

声明一个dateFormat bean,在“customer” Bean,引用 “dateFormat” bean作为一个工厂bean。该工厂方法将调用SimpleDateFormat.parse()自动转换成字符串Date对象。

    
        
    

    
        
            
                
            
        
    

2. CustomDateEditor

声明一个 CustomDateEditor 类将字符串转换成 java.util.Date。

    

        
            
                
            
        
        

    

    
        
            
                
                    
                
            
        
    

    
        
    

你可能感兴趣的:(Spring 注入日期到bean属性)