WorkManagerTaskExecutor with Tomcat
Hi,
I wanted to schedule a work from my JSF backing bean. I am using tomcat 6 as the server. I tried to do this with commonj, but could not really figure out how to configure the work manager . From commonj documents , i got the following
Code:
<Resource name="wm/FooWorkManager" auth="Container"
type="commonj.work.WorkManager"
factory="de.myfoo.commonj.work.FooWorkManagerFactory"
maxThreads="10" />
But did not understood what to do with FooWorkManagerFactory.
So I tried to look for a spring solution and there I got workmanagertaskexecutor .
Can anybody tell me how can I configure the workmanagertaskexecutor in a tomcat environment?
Shaiju