wsadmin ツールおよびスクリプトを使用して、アプリケーションの開始ウェイトを変更できます。
set dep [$AdminConfig getid /Deployment:MyApp/]
dep = AdminConfig.getid("/Deployment:MyApp/")
set depObject [$AdminConfig showAttribute $dep deployedObject]
depObject = AdminConfig.showAttribute(dep, "deployedObject")
$AdminConfig show $depObject startingWeight
{startingWeight 1}
AdminConfig.show(depObject, 'startingWeight')
[startingWeight 1]
$AdminConfig modify $depObject {{startingWeight 2}}
AdminConfig.modify(depObject, [['startingWeight', '2']])
{startingWeight 2}
[startingWeight 2]