@Component、@Autowired无效的问题(空指针、得到空对象)
@Component、@Autowired无效的问题(空指针、得到空对象)记录一次再开发中遇到的问题,springboot 中的@Component、@Autowired注入无效,话不多说,直接上代码用@Component注解将MyWebDriver类注入容器中@Component("myWebDriver")public class MyWebDriver {public WebDriver g
·
@Component、@Autowired无效的问题(空指针、得到空对象)
记录一次再开发中遇到的问题,springboot 中的@Component、@Autowired注入无效,
话不多说,直接上代码
用@Component注解将MyWebDriver类注入容器中
@Component("myWebDriver")
public class MyWebDriver {
public WebDriver getWebDriver(String driver,String driverPath){
buildWebDriver();
return webDriver;
}
}
在GenerallyUtils类中注入myWebDriver,并调用myWebDriver的getWebDriver的方法
@Component
public class GenerallyUtils {
@Autowired
MyWebDriver myWebDriver;
public void getHtmlTagTree(String xpath){
WebDriver driver = myWebDriver.getWebDriver();
}
}
测试类,调用generallyUtils中的getHtmlTagTree方法.
@SpringBootTest
class AutomatedApplicationTests {
@Test
public void test02() throws InterruptedException {
new GenerallyUtils().getHtmlTagTree("");
}
}
到这里就开始报空指针的错误,myWebDriver为null。其实我在这里犯了一个很严重的错误,就是我在测试类中new了一个新的GenerallyUtils对象来调用它的方法。而我们之前就已经把GenerallyUtils交给springboot来管理,这里new出来的对象是一个全新的对象,并非springboot容器中的对象,springboot也不会自动帮我们注入这个对象中的myWebDriver属性,所以此时GenerallyUtils中的myWebDriver为空。
所以此时我们只需要注入springboot容器中的GenerallyUtils就可以了
@SpringBootTest
class AutomatedApplicationTests {
@Autowired
GenerallyUtils generallyUtils;
@Test
public void test02() throws InterruptedException {
generallyUtils.getHtmlTagTree("");
}
}
吸取教训,希望以后不要再犯这种低级错误
更多推荐
已为社区贡献1条内容
所有评论(0)