我对文件有一个非常困难的问题,application.properties
因为我无法使用 java spring 从这个文件中正确读取。下面给出简单的源代码。先感谢您。
application.properties file
message.username=john12345
Messages.java
@Value("${message.username}")
private String username;
它抛出 aFileNotFoundException
并显示该值始终为null
。