我试图访问RestControllerAdvice
文件中application.properties
的值。我猜,当通知bean首先加载时,值没有被读取。是否有办法将application.properties
文件中的值带入建议文件。
@Value
注释从advice控制器中的application.properties
读取null
。
试试
例如:
应用程序。属性文件:
expired.time=1440
在任何文件中,导入:
import org.springframework.beans.factory.annotation.Value;
...
public class AnyClass {
@Value("${expired.time}")
private Integer expiredTime;
}