Ich möchte eine HashMap der Konfiguration im JNDI-Baum des Glass Fish-Servers bereitstellen. Ich bin dabei, ein Framework von Weblogic auf GLassfish zu migrieren. Zuvor war es über den folgenden Code getan
Wo die Umwelt ist weblogic.jndi.Environment;
public void deployConfiguration(HashMap configuration)
throws GenericFrameworkException {
Context ictx = null;
String configParameter = null;
Environment env = new Environment();
env.setReplicateBindings(false);
// get the NOT replicating initial context of this server
ictx = ServiceLocator.getNotReplicatingInitialContext();
if (ictx != null) {
Set e = configuration.keySet();
Iterator iter = e.iterator();
while (iter.hasNext()) {
configParameter = (String) iter.next();
this.addParameter(
ictx,
Constants.JNDI_SUB_PATH,
configParameter,
configuration.get(configParameter));
}
}
}
Kann jemand vorschlagen, wie dies in Glassfish erreicht werden kann?
Vielen Dank im Voraus.