zoukankan      html  css  js  c++  java
  • 使用junit测试springMVC项目提示ServletContext找不到定义错误

    原文链接:https://blog.csdn.net/liu_gan/article/details/78400627

    @RunWith(SpringJUnit4ClassRunner.class)
    @WebAppConfiguration
    @ContextConfiguration(locations = {"classpath:dispatcher-servlet.xml"})
    public class UserApplicationTest {
        private static final Log logger = LogFactory.getLog(UserApplicationTest.class);
        @Autowired
        private UserAccessDao userAccessDao;
    
        @Test
        public void test() {
            UserAccessEntity userAccess = userAccessDao.selectByPrimaryKey(1L);
            logger.info("userAccess ={}", JSON.toJSONString(userAccess));
        }
    
    }

    跑test报错如下:

    Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [javax.servlet.ServletContext] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: 

    解决:

    其实提示很清楚就是找不到注入javax.servlet.ServletContext 的实例,明显就是没有web容器环境

    解决办法就是配置web容器配置

    为类添加注解 @WebAppConfiguration 即可全部如下

    @RunWith(SpringJUnit4ClassRunner.class)
    @WebAppConfiguration
    @ContextConfiguration(locations = {"classpath:dispatcher-servlet.xml"})
    public class UserApplicationTest {
        private static final Log logger = LogFactory.getLog(UserApplicationTest.class);
        @Autowired
        private UserAccessDao userAccessDao;
    
        @Test
        public void test() {
            UserAccessEntity userAccess = userAccessDao.selectByPrimaryKey(1L);
            logger.info("userAccess ={}", JSON.toJSONString(userAccess));
        }
    
    }
  • 相关阅读:
    MVC设计模式
    二十三种设计模式
    描绘质量属性的六个常见属性场景。
    《架构漫谈》读后感
    软件架构师的工作过程
    《架构之美》阅读笔记06
    《架构之美》阅读笔记05
    《架构之法》阅读笔记04
    《架构之美》阅读笔记03
    《构架之美》阅读笔记02
  • 原文地址:https://www.cnblogs.com/daixianjun/p/spring-NoSuchBeanDefinitionException-ServletContext.html
Copyright © 2011-2022 走看看