nullpointerexception: null单元测试java.lang.NullPointerException idea可以右键-goto⽣成测试类,但是需要注意:
⾸先在calss上添加:
@RunWith(SpringRunner.class)
@SpringBootTest
@ContextConfiguration(classes = Application.class)
另外,不可以使⽤new⽅法来创建对象,因为对象没有交给Spring管理,对象⾥⾯的属性也就⽆法注⼊,为空了。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。