我有一个属性文件,其中包含记录LOG_DB_NAME = testdb_log。
我将以下内容添加到config.xml中,以便可以直接在配置中使用$ {LOG_DB_NAME}。 (工作)
<context:property-placeholder location="/properties/*.properties" system-properties-mode="OVERRIDE" />
现在,我想在注释属性中使用$ {LOG_DB_NAME}变量,但似乎不起作用。
@Entity
@Table(category="${LOG_DB_NAME}")
public class Test {
}
如何将值从属性文件加载到注释属性?