MyBatis Generator generatorConfig.xml配置详解

所有Generator的xml详细说明见:http://mybatis.org/generator/configreference/xmlconfig.html (英文版)

现在针对generatorConfig.xml配置进行解说,至于其内部元素的详解见英文文档,贴上xml,里面都有注释,大家一看就明白了:
  
  
  
      
      
      
      
      
      
      
      
          
          
              
               
          
          
          
          
          
          
          
              
              
          
          
            
          
              
              
              
              
          
          
          
          
              
              
          
          
              
          
              
              
          
          
              
          
              
              
        



#Mybatis Generator configuration  
project = EKSP  
classPath=E:/workplace/EKSP/WebContent/WEB-INF/lib/ojdbc14.jar  
jdbc_driver = oracle.jdbc.driver.OracleDriver  
jdbc_url=jdbc:oracle:thin:@127.0.0.1:1521:orcl  
jdbc_user=INFOGUARDIAN  
jdbc_password=info_idap132  

你可能感兴趣的:(mybatis,generator)