我编写了一个实例化Spring上下文的Maven插件。我希望能够使用项目类路径中的属性文件配置Spring上下文。在插件上下文XML中我有:
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<value>classpath:configurator.properties</value>
</property>
</bean>
当我使用我的插件在Maven项目中运行正确的插件目标时,Spring无法从目标/类文件夹中读取 configurator.properties 文件。 / p>
如何配置我的mojo以允许我在插件中运行Spring从项目类路径中读取属性文件?