configuration - In Weblogic (10), how do I access the node name from Java? -


I want to set up some per-node configurations in a weblogic cluster and need access to the node name from java. /p>

The following can be sufficient in your case (startup scripts weblogic.Name > System Property on server startup on server name):

  System.getProperty ("weblogic.Name");  

Comments