mybatis-plus-generator代码生成使用freemarker模板生成问题

具体报错

For “${…}” content: Expected a string or something automatically convertible to string (number, date or boolean), or “template output” , but this has evaluated to an extended_hash (wrapper: f.t.SimpleHash):

翻译的意思是:

“${… }”的内容:期望一个字符串或自动转换为字符串的东西(数字、日期或布尔值),或“模板输出”,但这已经被评估为一个extended_hash(包装器:f.t.SimpleHash):

大概意思:

就是说找不到${} 中的这个变量 ,如下图中的 ${package}是不存在的,所以就会报这个错。
mybatis-plus-generator代码生成使用freemarker模板生成问题_第1张图片

问题解决

可以找一些别人正确的模板看看,我这个模板里面的变量之前是手动传入的,所以mybatis-plus-generator中没有这个变量,导致赋值失败。
举例:${package}改成 ${package.Service}等 就行。
mybatis-plus-generator代码生成使用freemarker模板生成问题_第2张图片
具体mapper、entity、service、serviceImpl的模板文件看另一个博客。

你可能感兴趣的:(mybatis,异常报错解决,mybatis)