springboot XML Parser Error on line 44: 元素类型为 "context" 的内容不完整, 它必须匹配

仇飞鹏
2023-12-01

SpringBoot 项目打包时出现以下错误提示:

XML Parser Error on line 44: 元素类型为 "context" 的内容不完整, 它必须匹配 "(property*,plugin*,commentGenerator?,(connectionFactory
|jdbcConnection),javaTypeResolver?,javaModelGenerator,sqlMapGenerator?,javaClientGenerator?,table+)"。

产生的原因之一是 mybatis-generator.xml 文件里缺失table标签:

<table tableName="t_city"/>

自己是在一次把所有的table标签都注释掉的情况下产生这样错误的。

 类似资料: