问题遇到的现象和发生背景
今天在学MyBatis的时候发现自己设置的驼峰映射不起作用了,User类 的命名都是驼峰法,数据库都是下划线连接的,但是查询的时候无法正确的返回映射回来的User对象
问题相关代码,请勿粘贴截图
这是测试类的代码
public class UserMapperTest {
UserMapper userMapper = null;
SqlSession sqlSession = null;
@Before
public void setUp() throws Exception {
//1.获取核心配置文件
InputStream is = Resources.getResourceAsStream("mybatis-config.xml");
//2.创建sqlSessionFactory工厂对象
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(is);
//3.创建sqlSession对象
sqlSession = sqlSessionFactory.openSession();
//获取接口的动态代理对象
userMapper = sqlSession.getMapper(UserMapper.class);
}
@Test
public void findById() {
User user = userMapper.findById(2);
System.out.println("用户ID" + user.getUserId());
System.out.println("用户名" + user.getUserName());
System.out.println("用户年龄" + user.getUserAge());
sqlSession.close();
}
}
映射文件的查询部分
<select id="findById"
parameterType="int"
resultType="user">
select *
from users
where user_id=#{userId}
</select>
核心配置文件驼峰映射已经开了
<settings>
<!--开启驼峰映射-->
<setting name="mapUnderscoreToCamelCase" value="ture"/>
</settings>
运行结果及报错内容
查询时直接报了空指针异常
我的解答思路和尝试过的方法
尝试过把其中两项属性改成一样的命名,一样的命名的值就可以正确返回,不一致的就无法返回,但设置了驼峰映射后不应该会自动匹配上吗