weblogic - controlling the thread count of a web app -
i'd control how many threads can used web application. far thought can set creating application-scope workmanager (deployments -> [application] -> configuration -> workload)
, setting maximum thread constraint.
have feeling not true workmanager should referenced code has used explicitly application.
i'd need configure on xyz application can use max 5 threads no more. can done on global level want control 1 application.
as far know, if define workmanager in app's weblogic.xml
or weblogic-application.xml
, it's sure work on application level instead of config.xml
domain-level config. if create , configurate workmanager's max-threads-constraint
, reference in app’s web.xm
l file this:
<init-param> <param-name>wl-dispatch-policy</param-name> <param-value>your_workmanager_name</param-value> </init-param>
i'm pretty sure, constraint apply on app's level.
i have feeling not true workmanager should referenced code has used explicitly application.
where'd find this? may wrong never heard or read should referenced explicitly code instead of xml.
Comments
Post a Comment