MyBatis Generator generatorConfig.xml配置详解

摘要: Unexpected error while running MyBatis Generator. Exception getting JDBC Driver

                                                  Exception getting JDBC Driver

               一,问题描述

                        在Eclipse中使用Mybatis的自动生成对象的工具去生成Java对象时,选中配置文件,右键生成时出现"Unexpected error while running MyBatis Generator. Exception getting JDBC Driver"

               二,解决方案

                        这种情况下,排除自己没有添加对应数据库驱动的依赖的情况下,就是ClassPath中没有把相关驱动的jar包引入进来,此时只需要再配置文件中加入如下配置即可               

                        

                        location属性的值替换为你的本地驱动包所在位置

                        咦,忘了说明,这个配置是的子元素哦!!





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


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

[html]  view plain  copy
  1. xml version="1.0" encoding="UTF-8" ?>  
  2. >  
  3. <generatorConfiguration>  
  4.       
  5.     <properties resource="init.properties"/>  
  6.       
  7.       
  8.     <classPathEntry location="${classPath}" />  
  9.       
  10.       
  11.     <context id="infoGuardian">  
  12.           
  13.         <commentGenerator >  
  14.             <property name="suppressAllComments" value="false"/>  
  15.             <property name="suppressDate" value="true" />   
  16.         commentGenerator>  
  17.           
  18.           
  19.         <jdbcConnection driverClass="${jdbc_driver}"  
  20.             connectionURL="${jdbc_url}" userId="${jdbc_user}"  
  21.             password="${jdbc_password}" />  
  22.           
  23.           
  24.         <javaTypeResolver>  
  25.               
  26.             <property name="forceBigDecimals" value="false"/>  
  27.         javaTypeResolver>  
  28.           
  29.             
  30.         <javaModelGenerator targetPackage="com.oop.eksp.user.model"  
  31.             targetProject="${project}" >  
  32.               
  33.             <property name="enableSubPackages" value="false"/>  
  34.               
  35.             <property name="trimStrings" value="true"/>  
  36.         javaModelGenerator>  
  37.           
  38.           
  39.         <sqlMapGenerator targetPackage="com.oop.eksp.user.data"  
  40.             targetProject="${project}" >  
  41.               
  42.             <property name="enableSubPackages" value="false" />  
  43.         sqlMapGenerator>  
  44.           
  45.               
  46.         <javaClientGenerator targetPackage="com.oop.eksp.user.data"  
  47.             targetProject="${project}" type="XMLMAPPER" >  
  48.               
  49.             <property name="enableSubPackages" value="false" />  
  50.         javaClientGenerator>  
  51.           
  52.               
  53.         <table schema="${jdbc_user}" tableName="s_user"  
  54.             domainObjectName="UserEntity" enableCountByExample="false"  
  55.             enableDeleteByExample="false" enableSelectByExample="false"  
  56.             enableUpdateByExample="false">  
  57.               
  58.             <ignoreColumn column="FRED" />  
  59.               
  60.             <columnOverride column="LONG_VARCHAR_FIELD" jdbcType="VARCHAR" />  
  61.         table>  
  62.   
  63.     context>  
  64. generatorConfiguration>  

附带上我的init.properties
[html]  view plain  copy
  1. #Mybatis Generator configuration  
  2. project = EKSP  
  3. classPath=E:/workplace/EKSP/WebContent/WEB-INF/lib/ojdbc14.jar  
  4. jdbc_driver = oracle.jdbc.driver.OracleDriver  
  5. jdbc_url=jdbc:oracle:thin:@127.0.0.1:1521:orcl  
  6. jdbc_user=INFOGUARDIAN  
  7. jdbc_password=info_idap132  

以上是xml的配置基本情况,大家如果有什么疑问或者建议,敬请评论!

你可能感兴趣的:(框架搭建配置)