我有一個組件聲明:更新動態瞄準提供商iPOJO
<ipojo>
<component classname="HelloClass" name="helloCom" immediate="true">
<requires field="delayService" id="id1">
</requires>
</component>
<instance component="helloCom" name="hello">
<property name="requires.from">
<property name="id1" value="A"/>
</property>
</instance>
</ipojo>
該組件的jar文件:helloComponent.jar
現在,我想更新(值= 「A」)到(價值=「AA」)。因此,我使用ConfigurationAdmin來更新該屬性
public class ControllerReconfiguration {
private ConfigurationAdmin m_configAdmin;
@SuppressWarnings({ "rawtypes", "unchecked" })
public void reconfigure() throws IOException {
Configuration configuration = m_configAdmin.getConfiguration("hello","file:./helloComponent.jar");
configuration.setBundleLocation("file:./helloComponent.jar");
Properties props = new Properties();
//Dictionary props = new Hashtable();
props.put("id1", "AA");
configuration.update(props);
System.out.println("Update");
}
}
然而,這ControllerReconfiguration組件不能更新「你好」實例的值「A」(由「AA」)實現的組件。
如何修改此ControllerReconfiguration組件?
謝謝你的幫助。