建立一個warningList並傳遞給MyBatisGeneratorjava
List<String> warnings = new ArrayList<>(); MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, null, warnings);
前面你們都會注意,可是就是沒有輸出warnings(List)。輸出便可看到錯誤提示信息shell
if (warnings.isEmpty()) { System.out.println("MyBatis文件生成成功!!"); } else { System.err.println(warnings); }
mybatis generator出現異常不是拋出,而是進行捕獲放在傳入warnings(List)裏面,若是你不傳遞的話,它會初始化一個,可是在結束時並不會輸出任何信息。mybatis
開始和你們同樣沒有輸出List,而後一步步斷點調試,發如今最後寫入文件的時候沒有找到路徑。例如在MyBatisGenerator.class源碼中你會發現捕獲的異常處理的狀況eclipse
private void writeGeneratedJavaFile(GeneratedJavaFile gjf, ProgressCallback callback) throws InterruptedException, IOException { File targetFile; String source; try { File directory = shellCallback.getDirectory(gjf .getTargetProject(), gjf.getTargetPackage()); targetFile = new File(directory, gjf.getFileName()); if (targetFile.exists()) { if (shellCallback.isMergeSupported()) { source = shellCallback.mergeJavaFile(gjf .getFormattedContent(), targetFile, MergeConstants.OLD_ELEMENT_TAGS, gjf.getFileEncoding()); } else if (shellCallback.isOverwriteEnabled()) { source = gjf.getFormattedContent(); warnings.add(getString("Warning.11", //$NON-NLS-1$ targetFile.getAbsolutePath())); } else { source = gjf.getFormattedContent(); targetFile = getUniqueFileName(directory, gjf .getFileName()); warnings.add(getString( "Warning.2", targetFile.getAbsolutePath())); //$NON-NLS-1$ } } else { source = gjf.getFormattedContent(); } callback.checkCancel(); callback.startTask(getString( "Progress.15", targetFile.getName())); //$NON-NLS-1$ writeFile(targetFile, source, gjf.getFileEncoding()); } catch (ShellException e) { warnings.add(e.getMessage()); } }
下面是輸出的錯誤信息maven
[The specified target project directory .\src/main/java does not exist]
提示是路徑不存在,在配置文件中填寫的是相對路徑;有點奇怪,同事使用eclipse就能夠使用相對路徑,可是我用idea就不行,以前使用maven插件是能夠使用相對路徑的ide
<plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.7</version> <configuration> <verbose>true</verbose> <overwrite>true</overwrite> </configuration> </plugin>