alex island
alex island

Reputation: 61

Weblogic: defining a separate thread pool for a servlet

I have a Weblogic 10.3 server and an ear application deployed on it.

I want that one of the servlets (that this application uses) always will have free threads to perform requests. Can I set for this servlet a separate thread pool? Or can you advise me something else?

Thank you, Alex

Upvotes: 1

Views: 727

Answers (1)

alex island
alex island

Reputation: 61

Figured it out by myself. I needed to define a workmanager in weblogic.xml of my application and in web.xml I needed to apply the new workmanager to my servlet.

More about creating and using workmanagers in WebLogic: http://docs.oracle.com/cd/E23943_01/web.1111/e13701/self_tuned.htm#CNFGD117 http://www.itbuzzpress.com/weblogic-tutorials/weblogic-pools-configuration/using-workmanagers-in-your-applications.html

Upvotes: 1

Related Questions