<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="https://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    Quartz Scheduler in Jboss AS 7
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/ifti24">Ifta Khirul</a> in <i>JBoss AS 7 Development</i> - <a href="https://community.jboss.org/message/775697#775697">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hi,</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I'm trying to implement quartz scheduler in on of my EJB application with Jboss AS 7.</p><p>I have included quartz-jboss-2.1.6.jar and quartz-all-2.1.6 jar in my EJB application.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I have implemented my SchedulerBean in the following way -</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="color: #000000; font-family: 'Lucida Grande', Geneva, Verdana, Arial, sans-serif; font-size: 11px; background-color: #f4f3f3;">{code}</span></p><p>@Startup</p><p>@Singleton</p><p>public class SchedulerBean {</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; @PostConstruct</p><p>&#160; void init() {</p><p>&#160;&#160;&#160; </p><p>&#160;&#160;&#160; try {</p><p>&#160;&#160;&#160;&#160;&#160; Scheduler sched = new StdSchedulerFactory().getScheduler();</p><p>&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160; // schedule jobs here</p><p>&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160; JobDetail testjob = JobBuilder.newJob(TestJob.class).withIdentity("testjob", "testgroup").build();&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;SimpleTrigger trigger = TriggerBuilder.newTrigger()&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; .withIdentity("testtrigger", "testgroup")&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; .withSchedule(SimpleScheduleBuilder.simpleSchedule()&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; .withIntervalInSeconds(10)&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; .repeatForever())&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; .build();&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;sched.scheduleJob(testjob, trigger);</p><p>&#160;&#160;&#160; </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160;&#160;&#160; sched.start();</p><p>&#160;&#160;&#160; }</p><p>&#160;&#160;&#160; catch (Throwable t) {</p><p>&#160;&#160;&#160;&#160;&#160; // log exception</p><p>&#160;&#160;&#160; }</p><p>&#160; }</p><p>}</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="color: #000000; font-family: 'Lucida Grande', Geneva, Verdana, Arial, sans-serif; font-size: 11px; background-color: #f4f3f3;">{code}</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="color: #000000; font-family: 'Lucida Grande', Geneva, Verdana, Arial, sans-serif; font-size: 11px; background-color: #f4f3f3;">And below is the&#160; TestJob Class</span></p><p><span style="color: #000000; font-family: 'Lucida Grande', Geneva, Verdana, Arial, sans-serif; font-size: 11px; background-color: #f4f3f3;"><br/></span></p><p><span style="color: #000000; font-family: 'Lucida Grande', Geneva, Verdana, Arial, sans-serif; font-size: 11px; background-color: #f4f3f3;">{code}</span></p><p>public class TestJob implements Job {</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160; @Override</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160; public void execute(JobExecutionContext context) throws JobExecutionException {</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println("Quartz test job executed!");</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160; }</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;}</p><p><span style="color: #000000; font-size: 11px; background-color: #f4f3f3; font-family: 'Lucida Grande', Geneva, Verdana, Arial, sans-serif;">{code}</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="color: #000000; font-size: 11px; background-color: #f4f3f3; font-family: 'Lucida Grande', Geneva, Verdana, Arial, sans-serif;">Everything is ok in the compile time. But when I start my application (Then Enterprise application) I got the following Error -</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="color: #000000; font-size: 11px; background-color: #f4f3f3; font-family: 'Lucida Grande', Geneva, Verdana, Arial, sans-serif;">----------------</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Caused by: java.lang.NoClassDefFoundError: org/quartz/ScheduleBuilder</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.lang.Class.getDeclaredFields0(Native Method) [rt.jar:1.7.0_09]</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.lang.Class.privateGetDeclaredFields(Class.java:2308) [rt.jar:1.7.0_09]</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at java.lang.Class.getDeclaredFields(Class.java:1760) [rt.jar:1.7.0_09]</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.as.server.deployment.reflect.ClassReflectionIndex.&lt;init&gt;(ClassReflectionIndex.java:57) [jboss-as-server-7.1.1.Final.jar:7.1.1.Final]</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.as.server.deployment.reflect.DeploymentReflectionIndex.getClassIndex(DeploymentReflectionIndex.java:66) [jboss-as-server-7.1.1.Final.jar:7.1.1.Final]</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;... 10 more</p><p>Caused by: java.lang.ClassNotFoundException: org.quartz.ScheduleBuilder from [Module "deployment.TestEnterpriseProject.ear.TestEjbProject.jar:main" from Service Module Loader]</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:190)</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:468)</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:456)</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:398)</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:120)</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;... 15 more</p><p>-----------------</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Can anybody help me to findout a way to solve this issue please ?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="color: #000000; font-size: 11px; background-color: #f4f3f3; font-family: 'Lucida Grande', Geneva, Verdana, Arial, sans-serif;"><br/></span></p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="https://community.jboss.org/message/775697#775697">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JBoss AS 7 Development at <a href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2225">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>