参考答案
MyBatis中注册Mapper的两种方式:
1. 在配置文件 mybatis-config.xml 中添加及其子标签,编写对应的 Mapper 接口与 XML
<mappers> <mapper resource="constxiong/mapper/UserMapper.xml"/> </mappers>
2. 硬编码方式在 configuration 对象中注册 Mapper 接口
//配置 Configuration configuration = new Configuration(environment); //注册 configuration.addMapper(UserMapper.class);
以上,是MyBatis面试题【MyBatis中注册Mapper有哪些方式】的参考答案。
输出,是最好的学习方法。
欢迎在评论区留下你的问题、笔记或知识点补充~
—end—