SSM框架Test测试类无法注入对象NullPointerException
引言
在SSM框架下,Test测试类中注入对象时报空指针异常,下面就来解决该错误
Test测试类无法注入对象,是因为缺少jar包,和注解声明
pom依赖
加入测试相关jar包
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.3.13</version>
</dependency>
Test测试类增加声明
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:applicationContext.xml")
ok,至此问题完美解决
本文如果帮助到你的话,那就给博主(==点赞,关注,收藏==)吧