如何从Mule FuncionalTestCase访问app.properties中定义的Spring属性?
例如,在我的生产配置中,我将$ {sessionExpiresInSecondsValue}传递给bean属性。我想要做的是获取此值并将其与FunctionalTestComponent一起使用以等待与该值相同的时间量,并且我不想进行编码以使测试与值不同步。
答案 0 :(得分:1)
最简单的方法是通过${sessionExpiresInSecondsValue}
从注册表中获取接收MuleContext
的bean,并在其上调用getSessionExpiresInSecondsValue()
。