wls-management-services.war
only Administrator and Operator can invoke
weblogic.management.rest.Application main entry point
weblogic.management.rest.bean.utils.load.BuiltinResourceInitializer : all the MBeans are loaded here
weblogic.management.runtime.ServerRuntimeMBean
weblogic.management.rest.wls.resources.server.ShutdownServerResource this is the REST endpoint
@POST
@Produces({"application/json"})
public Response shutdownServer(@QueryParam("__detached") @DefaultValue("false") boolean detached, @QueryParam("force") @DefaultValue("false") boolean force, @PathParam("server") String name) throws Exception {
return this.getJobResponse(name, ServerOperationUtils.shutdown(this.getRequest(), name, detached, force), new ShutdownJobMessages(this));
}
weblogic.management.rest.wls.utils.ServerOperationUtils
From MBean:
com.bea.console.actions.core.server.lifecycle.Lifecycle$AdminServerShutdownJob
http://localhost:7001/console/jsp/core/server/lifecycle/ConsoleShutdown.jsp
weblogic.t3.srvr.GracefulShutdownRequest
weblogic.t3.srvr.ServerGracefulShutdownTimer
only Administrator and Operator can invoke
weblogic.management.rest.Application main entry point
weblogic.management.rest.bean.utils.load.BuiltinResourceInitializer : all the MBeans are loaded here
weblogic.management.runtime.ServerRuntimeMBean
weblogic.management.rest.wls.resources.server.ShutdownServerResource this is the REST endpoint
@POST
@Produces({"application/json"})
public Response shutdownServer(@QueryParam("__detached") @DefaultValue("false") boolean detached, @QueryParam("force") @DefaultValue("false") boolean force, @PathParam("server") String name) throws Exception {
return this.getJobResponse(name, ServerOperationUtils.shutdown(this.getRequest(), name, detached, force), new ShutdownJobMessages(this));
}
weblogic.management.rest.wls.utils.ServerOperationUtils
From MBean:
com.bea.console.actions.core.server.lifecycle.Lifecycle$AdminServerShutdownJob
http://localhost:7001/console/jsp/core/server/lifecycle/ConsoleShutdown.jsp
weblogic.t3.srvr.GracefulShutdownRequest
weblogic.t3.srvr.ServerGracefulShutdownTimer