我的 Web 应用程序正在使用 spring,并且使用 ServletContextPropertyPlaceholderConfigurer 加载了一些 bean 属性。并且属性在文件系统中。但是,我想从数据库中加载一些属性。如果有重复,数据库中的属性将覆盖文件系统中的属性。
我在 ServletContextPropertyPlaceholderConfigurer.setProperties(Properties properties) 中找到了这个方法。但是 Spring 文档说文件中的属性将覆盖它。我想反过来。我怎样才能做到这一点?
谢谢,