springmvc测试类中如何引入controller与service,request,respon
使用的引入注解不同
(引入controller的时候有时候会拿不到,那是因为controller类的最上面,没有引入@Controller注解:)
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:spring/spring-mvc.xml" })
public class xxxTest {
@Resource
private xxxController nikeBuyController;
@Resource
private xxxService xxxService;
@Autowired
private HttpServletRequest request;
@Autowired
private HttpServletResponse response;
}
controller与service层用的注解不一样。但有时候都是@Resource 为什么会这个原因我也不太明白,懂的老师希望告诉我一下。谢谢
本博客中所有内容为本人自学及总结内容,
仅代表个人观点,如有错误,麻烦大家及时指出并提示我更正。谢谢