标签: java spring hibernate spring-el
我有一个Spring Hibernate应用程序。我想使用scheme文件中的值来设置@Table批注的application.properties属性。
scheme
@Table
application.properties
@Entity @Table(schema = "${hibernate.scheme}") public class Holidays { // code }
但是它不起作用。 Spring不会用属性值代替${hibernate.scheme}。有办法解决吗?
${hibernate.scheme}
我正在尝试执行此操作以将不同的方案用于测试。