Total Pageviews

Monday, January 25, 2016

weblogic configuring on-demand application deployment


in weblogic you can deploy some application when user is requesting for it. while using this option specified all the application on that domain will be deployed when Admin server started. using this option will consume more resources and weblogic will take longer to start but all the application will be deployed once it is started

this property called "Enable on-demand deployment of internal application". this option is under domain --> General. by default it is "checked" you can "encheck" it and save it in order to enable on-demand application deployment.

you can also set this property thru wlst command(if you need to know how to run wlst command read oracle blog)

here at some short steps

java weblogic.WLST

connect()
edit()
startEdit()
go to domain --> serverConfiguration and run below this command
cmo.setInternalAppsDeployOnDemandEnabled(false)

No comments:

Post a Comment