bug遍地跑的博客mapper文件中写sql语句时提示Tag name expected,找到原因是因为xml不识别<号需要用特定转义符来表示<号。 做如下替换即可: 比如说: select sum(BikeCount) from poTable where needBikeCount < 0 ...
acaos的博客Mybatis从入门到放弃02-入门例子 工程目录为 1:新建POJO类 package com.liujia.bean; import java.util.Date; public class User { private int id; private String name ; ...