在MyBatis GeneratorConfig中配置模板文件需要使用
<context id="context1" targetRuntime="MyBatis3">
<!-- 配置模板文件的路徑 -->
<template path="templates/dao.ftl"/>
<template path="templates/mapper.xml.ftl"/>
</context>
在上面的示例中,我們為一個名為 context1 的上下文配置了兩個模板文件:dao.ftl 和 mapper.xml.ftl。這兩個模板文件應該放置在項目中的 templates 目錄下。
注意:在配置模板文件的路徑時,需要相對于 MyBatis GeneratorConfig 文件所在的路徑來指定。