1. 程式人生 > >Spring+MyBatis 在Junit測試中需要注意的細節

Spring+MyBatis 在Junit測試中需要注意的細節

    在Spring+MyBatis框架下Junit測試時如果直接@Autowired ServiceImpl service 的話會報錯:nullpointerexception;

需要在類上添加註解

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:spring-mybatis.xml"})
public class MybatisTest{
	@Autowired
	public UserMapper userMapper;

        @Test
        public void test(){
            }
}