1.2.3 WebLogic Server Startup
The WebLogic standards-based, pure-Java application server assembles, deploys, and manages distributed Java applications. It supports distributed component services and enterprise database access, including Enterprise JavaBeans, Remote Method Invocation (RMI), distributed JavaBeans, and Java Database Connect (JDBC).
The WebLogic Server’s Administration Server is populated with JavaBean-like objects Sun Microsystem’s Java Management Extension (JMX) standard. These objects provide management access to domain resources.
The Administration Server contains both configuration MBeans and run-time MBeans. Configuration MBeans provide both SET (write) and GET (read) access to configuration attributes. Run-time MBeans provide a snapshot of information about domain resources, such as current HTTP sessions or the load on a JDBC session pool. When a particular resource in the domain (such as a Jolt connection pool) is instantiated, an MBean is created to collect information about that resource.
Note:
For more information about configuration and run-time MBeans, refer to the Oracle WebLogic Server Administration Guide.The WebLogic Server is configured to initialize the session
pools at startup through the config.xml
file. A
special startup class, PoolManagerStartUp,
is invoked
by the WebLogic Server with a number of parameters. This class
functions as follows:
- Creates a session pool manager if one does not already exist
- Creates a session pool according to the given parameters
- Adds the new session pool to the pool manager
Note:
If the JSL port is configured as non-SSL and Jolt 22c is used, the Java property-DTM_ALLOW_NOTLS=Y
must be set in WebLogic Server startup script. Otherwise, the connections to JSL fails to established. Start the Jolt servers before attempting to create a session pool; otherwise the startup classes will fail, and they will not attempt to commit again.
The number of session pools created depends on the number of
JoltConnectionPools
that are configured in the
config.xml
file.
Parent topic: How Jolt for WebLogic Works