@Configuration
@PropertySource("classpath:test.properties")
public class Config {
@Bean
public CompactDisc cd(@Value("#{ systemProperties['artist']}") String artist) {
HotelCalifornia hotelCalifornia = new HotelCalifornia();
hotelCalifornia.setArtist( artist);
return hotelCalifornia;
}
@Bean
public CdPlayer player(CompactDisc cd) {
CdPlayer player = new CdPlayer();
player.setCd(cd);
return player;
}
}
该属性位于test.properties文件中。我不能得到该物业&#34;艺术家&#34;来自systemProperties.But我可以得到它,如果我使用@autowired实例化环境bean。我怎么处理它?</ p>
答案 0 :(得分:0)
所以请尝试使用png_write_png(png_ptr,info_ptr, PNG_TRANSFORM_SWAP_ENDIAN,NULL);
,前提是您在系统属性中以某种方式设置了艺术家。