我正在尝试从Spring Boot
中的application.properties文件中提取数据application.properties
host=localhost:8080
accountNumber=1234567890
TestController.java
@RestController
public class TestController {
private Logger logger = LoggerFactory.getLogger(TestController.class);
@Autowired
private TestService testServiceImpl;
@Value("${host}")
private String host;
@RequestMapping("/test")
public String test() {
testServiceImpl = new TestService();
return testServiceImpl.getValue();
}
TestServiceImpl.java
@Service
public class TestServiceImpl implements TestService{
@Value("${accountNumber}")
public String value;
public String getValue(){
return value;
}
当我对localhost执行REST调用时:8080 / test,我得到一个空值。
TestServiceImpl
已实例化,@Value
似乎不起作用。
我错过了什么吗?
SOLUTION:
我所要做的就是删除行testServiceImpl = new TestService();
我假设它正在这样做因为new TestService()
覆盖了TestService
的自动装配实例
答案 0 :(得分:3)
更新:
Spring的DI通过@Autowired annotation实现。它为我们创建了对象。
@Autowired
private TestService testServiceImpl;
.
.
.
@RequestMapping("/test")
public String test() {
// testServiceImpl = new TestService(); // make comment this line
return testServiceImpl.getValue();
}
答案 1 :(得分:0)
我发现的解决方案非常简单。
我所要做的就是删除行testServiceImpl = new TestService();
我认为它是这样做的,因为新的TestService()正在覆盖自动连接的TestService实例。
感谢harshavmb验证我的解决方案。
希望这有助于许多新的春天:)