关于Caused by: org.xml.sax.SAXParseException;必须为元素类型 “select“ 声明属性 “parmeterType“

今天写统计查询的时候出现了Springboot项目启动失败没有报错

关于Caused by: org.xml.sax.SAXParseException;必须为元素类型 "select" 声明属性 "parmeterType"

在main函数上捕捉异常

try {
    SpringApplication.run(TiangongSpringBootDemoApplication.class, args);
} catch (Exception e) {
    e.printStackTrace();
    log.error("the exception is {}", e);
}

原来代码是这么写的

List selectIds(@Param(value="dateVo")DateVo dateVo);

看起来比较疑惑明明有parameterType这个参数,提示我没有参数

删除parameterType就可以了

你可能感兴趣的:(#,异常解决方案)