弹簧依赖注入自动布线空值
2022-09-03 06:39:59
我能够使用RestTemplate并自动连接它。但是,我想将我的 rest 模板相关部分代码移动到另一个类中,如下所示:
public class Bridge {
private final String BASE_URL = "http://localhost:8080/u";
@Autowired
RestTemplate restTemplate;
public void addW() {
Map<String, String> x = new HashMap<String, String>();
W c = restTemplate.getForObject(BASE_URL + "/device/yeni", W.class, x);
System.out.println("Here!");
}
}
在另一堂课上,我称之为:
...
Bridge wb = new Bridge();
wb.addW();
...
我是春季和依赖注入术语的新手。我的变量为空并引发异常。我能做些什么来解决它(我不知道它与我使用关键字有关)?restTemplate
new