English 中文(简体)
当有人打工时,这是否是一个新的职业类别?
原标题:when a quartz job fires, is it a new job class instance?

我对克特茨非常新,我对工作周期有一些怀疑。

让我相信,我有一个单一的工作,可以做些什么。

工作大火,结束工作。 当它再次开火时,它是否属于同一情况(可能被安排睡觉和被订票人打耳光),还是是一个新的工作案例(因为工作结束而死亡,当触发条件再次出现时)?

我提出这样一个问题,因为当我提出申请时,我会看到新的工作事例,看到有简单校服的新胎面,每当工作被解雇时,就开始开工,以便简单地讲花花花花花钱,永远不会终止。

我只想知道这种行为是否完全正确,或我必须填满记忆。

谁能给我某种解释? 提前感谢。

最佳回答
问题回答

我将撰写第2.1.5版(最新版本),但其他版本也是如此。

Job-instance created by some instance of "JobFactory" with "newJob"-function (SimpleJobFactory, for example). Call to "newJob" executed in "initialize"-method of JobRunShell-class. JobRunShell-object held in local variable of "QuartzSchedulerThread.run" and not stored in any other list or field.

因此,新的 工作-在每一触发时间创造,执行后通常由垃圾收集器清理。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...