springboot测试类测试时注⼊的对象为null
springboot测试类时注⼊对象为NullPointerException
解决⽅法:
spring boot选择题正常来说测试类加上以下配置就可以正常@Test测试,但@SpringBootTest(classes = BootApplication.class)中的classes的值要纸箱启动类的才可以正常注⼊属性。也就是说BootApplication是springboot启动类
@RunWith(SpringRunner.class)
@SpringBootTest(classes = BootApplication.class)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论