我必须在具有持久嵌入式代理的同一台机器上启动该服务的多个实例(单独的 JVM)。所有配置文件都是预先生成的,并且在服务启动之前在编译方式上完成了它们的变量替换。我在尝试获取 AMQ 数据目录和 KahaDB 锁的几个实例时遇到问题,显然第一个实例成功获取锁,其余实例继续尝试失败。
我需要设置这样的东西:
. . .
<amq:broker dataDirectory="${activemq.directory}/data" id="broker" persistent="true" useJmx="false" >
. . .
我尝试了 PropertyPlaceholderConfigurer,但据我了解,它从 Spring 配置中指定的文件加载属性,并且在它启动时已经为时已晚。我正在尝试使用 Spring 表达式语言,所以我最终得到了这样的结果:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jms="http://www.springframework.org/schema/jms"
xmlns:amq="http://activemq.apache.org/schema/core"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/jms
http://www.springframework.org/schema/jms/spring-jms-3.0.xsd
http://activemq.apache.org/schema/core
http://activemq.apache.org/schema/core/activemq-core-5.5.0.xsd">
<!-- Embedded ActiveMQ Broker -->
<amq:broker dataDirectory="#{systemProperties['activemq.directory']}/data" id="broker" persistent="true" useJmx="false" >
...
我通过命令行
-Dactivemq.directory=<my-directory>
在我看到的日志上
nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named '{systemProperties['activemq.directory']}/data' is defined
好像我缺少 AMQ 和 Spring3 SpEL 的东西?是否有其他解决方案同样认为我可能会失踪?