G
Gast
Gast
habe einen Swing-Client der auf einen JBoss zugreift.
Im Projekt direkt eingebunden ist die jbossall-client.jar des JBoss, sowohl im Eclipse als auch in der erzeugten jar-Datei alles bestens.
wollte jetzt die jbossall-client.jar auslagern, gehe so vor:
Zwei Probleme:
1.
Der Ausführung NamingContextFactory klappt im Eclipse, aber in meiner erzeugten jar-Datei nicht, obwohl die objProperties wohl gefüllt wird.
2.
Im Eclipse, wo es funktioniert, dauert der Zugriff auf eine Db-Tabelle via JBoss wesentlich länger.
Im Projekt direkt eingebunden ist die jbossall-client.jar des JBoss, sowohl im Eclipse als auch in der erzeugten jar-Datei alles bestens.
Code:
...
javax.naming.InitialContext initial=new javax.naming.InitialContext(getProperties());
...
public static Properties getProperties(){
Properties objProperties = null;
objProperties = new Properties();
objProperties.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY,"org.jnp.interfaces.NamingContextFactory");
objProperties.put(javax.naming.Context.URL_PKG_PREFIXES,"jboss.naming:org.jnp.interfaces");
objProperties.put(javax.naming.Context.PROVIDER_URL, "localhost:1099" );
return objProperties;
}
Code:
public static Properties getASProperties(){
Properties objProperties=new Properties();
String sst="C:/KOPIASSES/Java/JBoss/client/jbossall-client.jar";
URL url;
try{
url=new URL("file:/"+sst);
URL[] cp={url};
URLClassLoader ucl=new URLClassLoader(cp);
Thread.currentThread().setContextClassLoader(ucl);
Class c=ucl.loadClass("org.jnp.interfaces.NamingContextFactory");
objProperties.put("org.jnp.interfaces.NamingContextFactory",c.newInstance());
objProperties.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY,"org.jnp.interfaces.NamingContextFactory");
objProperties.put(javax.naming.Context.URL_PKG_PREFIXES,"org.jboss.naming org.jnp.interfaces");
objProperties.put(javax.naming.Context.PROVIDER_URL,"localhost:1099");
}catch(MalformedURLException e){}
catch(ClassNotFoundException e){}
catch(InstantiationException e){}
catch(IllegalAccessException e){}
return objProperties;
}
1.
Der Ausführung NamingContextFactory klappt im Eclipse, aber in meiner erzeugten jar-Datei nicht, obwohl die objProperties wohl gefüllt wird.
2.
Im Eclipse, wo es funktioniert, dauert der Zugriff auf eine Db-Tabelle via JBoss wesentlich länger.