在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 文件所在的路径来指定。