A have application deployed to JBoss. It contains Inside it I register Quartz MBean wich trigger scheduled task.
How can I create reouce ref for that MBean to access resource by java:/comp/env/* and not java:/* in my task code.
|
|
|
In a web app, add something like the following to web.xml:
and add something like the following to jboss-web.xml:
with that in place, you should be able to lookup the resource using the local resource reference, java:comp/env/QuartzObject. HTH |
|||
|
|