新手问题:
我有我的上下文 XML
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<value>classpath:my_portal.properties</value>
</property>
</bean>
我有 my_portal.properties 文件作为我的 IntelliJ 项目的一部分(在 /conf 目录中),但是当我运行/调试时,war_exploded 工件似乎不提供 Tomcat 访问该文件的能力。如何公开这个文件,以便 Tomcat 可以访问它在 XML 上下文文件中的属性?