我面临着“循环占位符引用”异常,而试图运行一个可执行的jar文件。下面是详细的例外。
org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean definition with name 'postProcessProperties' defined in class path resource [applicationContext.xml]: Circular placeholder reference 'processor.core.poolsize' in property definitions
[echo] at org.springframework.beans.factory.config.PropertyPlaceholderConfigurer.processProperties(PropertyPlaceholderConfigurer.java:287)
[echo] at org.springframework.beans.factory.config.PropertyResourceConfigurer.postProcessBeanFactory(PropertyResourceConfigurer.java:75)
[echo] at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:663)
[echo] at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:638)
[echo] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:407)
[echo] at org.springframework.context.support.ClassPathXmlApplicationContext.(ClassPathXmlApplicationContext.java:139)
[echo] at org.springframework.context.support.ClassPathXmlApplicationContext.(ClassPathXmlApplicationContext.java:83)
[echo] at com.autodesk.postprocess.engine.PostProcessEngine.start(PostProcessEngine.java:39)
[echo] at com.autodesk.postprocess.engine.PostProcessEngine.main(PostProcessEngine.java:29)
这是一个spring应用程序,它使用外部属性文件在启动时读取值。这是Spring的定义。到目前为止,这一直运作得很好。
<bean id="propertyConfig"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_NEVER" />
<property name="ignoreResourceNotFound" value="true" />
<property name="locations">
<list>
<value>classpath:/postprocess.properties</value>
</list>
</property>
<property name="properties">
<props>
<prop key="processor.core.poolsize">${processor.core.poolsize}</prop>
<prop key="processor.max.poolsize">${processor.max.poolsize}</prop>
</props>
</property>
</bean>
<bean id="postProcessProperties"
class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="properties">
<props>
<prop key="processor.core.poolsize">${processor.core.poolsize}</prop>
<prop key="processor.max.poolsize">${processor.max.poolsize}</prop>
<prop key="processor.polling.delay">${processor.polling.delay}</prop>
<prop key="processor.polling.period">${processor.polling.period}</prop>
</property>
</bean>
我使用shade插件来生成jar文件。这一段的
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.7.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.test.postprocess.engine.PostProcessEngine</mainClass>
</transformer>
<transformer
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring.handlers</resource>
</transformer>
<transformer
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/spring.schemas</resource>
</transformer>
</transformers>
<filters>
<filter>
<artifact>:</artifact>
<excludes>
<exclude>META-INF/.SF</exclude>
<exclude>META-INF/.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
我不确定是什么导致了这个问题,因为我以前在其他可执行的jar文件中使用过类似的模式。
任何指针将不胜感激。
谢谢
6条答案
按热度按时间hmmo2u0o1#
现在回答这个问题可能已经晚了,但是为了那些面临类似问题的人的利益而添加它。
我可以通过更改密钥名称来修复它。例如
被改成了
property-placeholder键和要过滤的属性值的键不能相同。
brtdzjyr2#
当你的属性键名和值变量名完全相同时,
spring-framework
会抛出上述类型的异常。请确保您的属性不应该看起来像
key={$key}
。为键和值保留不同的名称将解决此问题。bvpmtnay3#
我在尝试使用SpringJUnit 4ClassRunner运行Spring集成测试时遇到了同样的问题。我不确定如何加载我的属性文件,在一些错误的步骤之后,我找到了@TestPropertySource注解,它允许我定义所需的属性文件。
在此之前,我尝试过@PropertySource,当您运行这样的Spring集成测试时,它不起作用。
希望这能帮助其他人。
xxb16uws4#
**快速修复:**有同样的问题。重命名属性,启动应用程序,重命名属性并重新启动应用程序解决了这个问题。也许这能帮上忙
yquaqz185#
可能找不到资源-
postprocess.properties
。你能把这条线拿掉吗-然后,如果未找到资源,则应显示适当的消息。
1tuwyuhd6#
在java代码中,如果您使用的是在某些**.properties或yaml**文件中声明的键,而不是
application.properties
或application.yaml
,则当您尝试在不指定要使用的配置文件的情况下运行Spring应用程序时,您将获得此异常。解决方案:在我的情况下,我使用的是 * Sping Boot 2.4*,这里有一种方法可以告诉你的应用将使用哪个配置文件:
命令行:
如果您通过IntelliJ等IDE运行应用程序:
在Spring Config中,指定您想要激活的配置文件(以逗号分隔):