当使用junit4 对spring框架中controller/service/mapper各层进行测试时,需要添加的配置

@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration(locations = {"classpath:springmvc.xml", "classpath:spring-mybatis.xml"})

引入相应的类

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import org.testng.Assert;
原文地址:https://www.cnblogs.com/theone67/p/10856783.html