2014年4月19日 星期六

mybatis錯誤:The content of element type "configuration" must match "(properties?,settings?,typeAliases?,typeHandlers?,objectFactory?,objectWrapperFactory?,plugins?,environments?,databaseIdProvider?,mappers?)".

Myibatis 配置问题
這樣的mybatis-config.xml:

 
          ...  
 
 
 
          ...
 
 
          ...
            
 
            ....     
 

錯誤:
The content of element type "configuration" must match 

 "(properties?,settings?,typeAliases?,typeHandlers?,objectFactory?,objectWrapperFactory?,plugins?,environments?,databaseIdProvider?,mappers?)".

原來mybatis的xml宣告是有順序的,務必要按照錯誤上所說的:
properties 再來是 settings 再來 typeAliases... 依此類推。

因此以我的問題來說,只要將settings改到properties下面environments之上就可以囉(也就是中間)
更改後如下:


 
          ...  
 
 
 
          ...
        

 
          ...
 
    
 
            ....     
 

沒有留言:

張貼留言