我计划将@Value
注释用于我的服务实现类。
@Value("${some_property:default_value}")
private String key;
要使用上面的注释,我可以使用@Autowired
注释。
@Autowird
Private Environment environment;
但是,我打算在我的applicationContext.xml
文件中使用这些设置,如下所示。
<context: something missing here = "ENVIRONMENT"/>
答案 0 :(得分:1)
是即可。您可以在applicationContext.xml
beans
标记中执行此操作,有一个名为profile
的属性,因此您可以在最新的春季版本中执行profile="ENVIRONMENT"
。