src/main/resources/generatorConfig.xml does not exist

src/main/resources/generatorConfig.xml does not existmybatis

[ERROR] Failed to execute goal org.mybatis.generator:mybatis-generator-maven-plugin:1.3.4:generate (default-cli) on project 
-time-task: configfile /Users/danni/work/svn///branches//-time-task/src/main/resources/generatorConfig.xml does not exist -> [Help 1]

解決:maven

<plugin>
		<groupId>org.mybatis.generator</groupId>
		<artifactId>mybatis-generator-maven-plugin</artifactId>
		<version>1.3.4</version>
		<configuration>
			<!-- mybatis用於生成代碼的配置文件 -->
			<configurationFile>src/main/resources/generator/generatorConfig.xml</configurationFile>
			<verbose>true</verbose>
			<overwrite>true</overwrite>
		</configuration>
	</plugin>
相關文章
相關標籤/搜索