java - mybatis这个方法单元测试,总是错误
伊谢尔伦
伊谢尔伦 2017-04-17 14:40:06
0
3
553

《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《
@Test
public void insertUserTest() throws IOException{
String resource = "SqlMapConfig.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
SqlSession sqlSession = sqlSessionFactory.openSession();
User user = new User();
user.setAddress("寿光");
user.setBirthday(new Date());
user.setSex("1");
user.setUsername("隋伟");
sqlSession.insert("test.insertUser", user);
sqlSession.commit();
sqlSession.close();
}
《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《《

insert into user(id,username,birthday,sex,address) value(#{id},#{username},#{birthday},#{sex},#{address})

一运行就说sources not found

伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

reply all(3)
刘奇

Check whether the UserMapper.xml file is loaded in SqlMapConfig.xml:



Look again, I didn’t write anything wrong in the mapping file~

伊谢尔伦

Has your mapper file been configured?

大家讲道理

Has the data source been configured?
Has jdbc been integrated into mybatis?

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template