Heim > Fragen und Antworten > Hauptteil
PHPz2017-04-18 10:46:01
不需要 get set 方法
@Value("#{propertiesReader}")
public Properties props;
@Value("#{propertiesReader['username']}")
public String username;
PHP中文网2017-04-18 10:46:01
既然你要注入的是整个 properties,那么应该写的是:
@Value("#{propertiesReader}")
public void setProps(Properties props) {
this.props = props;
}
而不是
@Value("#{propertiesReader[username]}")