码迷,mamicode.com
首页 > 编程语言 > 详细

spring测试出错:Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0':

时间:2019-12-08 15:47:18      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:配置   nbsp   oca   color   request   run   fun   pat   cep   

技术图片

 

 

解决办法

这里找不到根路径,也就找不到Spring-config.xml的配置,所以加上更改根路径的注解@WebAppConfiguration(“src/main/resources”)就解决了

 

1 @RunWith(SpringJUnit4ClassRunner.class)
2 @WebAppConfiguration("src/main/resources")  //加上这个注解完美解决
3 @ContextConfiguration(locations = {"classpath:spring-persist-mybatis.xml","classpath:spring-persist-tx.xml", "classpath:springmvc.xml"})
4 public class CrowdFundingText {

 

spring测试出错:Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0':

标签:配置   nbsp   oca   color   request   run   fun   pat   cep   

原文地址:https://www.cnblogs.com/zwq20134/p/12005688.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!