Mybatis generator总是报错targetProject找不到?

时间:2025-04-21 09:02:20

 <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration  
  PUBLIC "-////DTD MyBatis Generator Configuration 1.0//EN"  
  "/dtd/mybatis-generator-config_1_0.dtd">  
<generatorConfiguration>  
<!-- 数据库驱动-->  
    <classPathEntry location="E:\Flex\workspace\trade\WebContent\WEB-INF\lib\jtds-1.2." />
    <context   targetRuntime="MyBatis3">  
        <commentGenerator>  
            <property name="suppressDate" value="true"/>  
            <!-- 是否去除自动生成的注释 true:是 : false:否 -->  
            <property name="suppressAllComments" value="true"/>  
        </commentGenerator>  
        <!--数据库链接URL,用户名、密码 -->  
        <jdbcConnection driverClass="" connectionURL="jdbc:jtds:sqlserver://localhost:1433/AIAWEBSITE" userId="sa" password="123">  
        </jdbcConnection>  
        <javaTypeResolver>  
            <property name="forceBigDecimals" value="false"/>  
        </javaTypeResolver>  
        <!-- 生成模型的包名和位置-->  
        <javaModelGenerator targetPackage="" targetProject="E:\Flex\workspace\ssm_withoutExt\src\main\java">  
            <property name="enableSubPackages" value="true"/>  
            <property name="trimStrings" value="true"/>  
        </javaModelGenerator>  
        <!-- 生成映射文件的包名和位置-->  
        <sqlMapGenerator targetPackage="" targetProject="E:\Flex\workspace\ssm_withoutExt\src\main\java">  
            <property name="enableSubPackages" value="true"/>  
        </sqlMapGenerator>  
        <!-- 生成DAO的包名和位置-->  
        <javaClientGenerator type="XMLMAPPER" targetPackage="" targetProject="E:\Flex\workspace\ssm_withoutExt\src\main\java">  
            <property name="enableSubPackages" value="true"/>  
        </javaClientGenerator>  
        <!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->  
        <table tableName="user_t" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
    </context>  
</generatorConfiguration>  



原来是 

targetProject="E:\Flex\workspace\ssm_withoutExt\src\main\java 不能写全路径!targetProject只用从项目名开始 例:targetProject="ssm_withoutExt\src\main\java" 就好了!! 记下了估计就是相对工作空间了! (能成就行!)