自定义maven插件,弹簧和配置文件

时间:2012-06-20 14:02:09

标签: spring maven maven-plugin

我编写了一个实例化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从项目类路径中读取属性文件?

0 个答案:

没有答案