MyBatis-Spring-Boot-Starter帮助你快速在springboot上整合mybatis。
版本对照
MyBatis-Spring-Boot-Starter
MyBatis-Spring
Spring Boot
1.3.x (1.3.1)
1.3 or higher
1.5 o
...
并发问题是每个程序员都要考虑的。
并发,简单的说,就是当多人一同访问你的系统,你的系统能否正常运行。
1.并发实例
下面我们来看一个数据库并发实例。
a) 如果我们程序中以name查找,比如 select * from testbatch where name is null
能查出多条记录,
...