Mybatis使用
mybatis-config.xml
|
Util
一般只需要创建一次,所以创建一个工具类
public class MybatisUtil { |
在其他函数里直接使用
try (SqlSession session = MybatisUtil.getSession(true)) { |
Mapper
原始方法
- 在
mybatis-config.xml
中添加
<mappers> |
- 定义
TestMapper.xml
|
使用
public static void main(String[] args) throws FileNotFoundException { |
接口方法
- 在
mybatis-config.xml
中添加
<mappers> |
- 定义
TestMapper.xml
和接口TestMapper.java
public interface TestMapper { |
使用
public static void main(String[] args) { |
注解方法
- 在
mybatis-config.xml
中添加
<mappers> |
或者
<mappers> |
使用
public interface TestMapper { |
动态SQL
if
<if test="argu == value"> |