Spring石英调度

发布于 2024-11-08 19:24:16 字数 124 浏览 0 评论 0原文

在我的应用程序中,需要能够为 My sql 数据库自动备份创建计划作业

我可以使用 Spring Quartz Scheduling 来创建此作业吗?

任何帮助都会有用的。

阿穆拉杰·P

In my application there is a requirement to be able to create Scheduled Job(s) for My sql database autobackup

Can I use Spring Quartz Scheduling to create this Jobs?

Any help would be useful.

Amulraj.P

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伴我老 2024-11-15 19:24:16

是的,你可以,尽管这似乎有点过分了。备份 MSSQL 数据库可以使用命令行工具完成,如果您使用的是 Unix 或 Windows 上的计划任务,您可以轻松安排使用 cron 运行该工具。

%PATH_TO_SQL_SERVER%\Tools\Binn\osql.exe
-E -Q "BACKUP DATABASE mydb TO DISK='%PATH_TO_BKP%\db.bak' WITH FORMAT"

对于你的问题,答案是这样的:(来自 此处

引用您的业务对象的作业,该对象具有负责备份的方法:

<bean id="jobDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
  <property name="targetObject" ref="exampleBusinessObject" />
  <property name="targetMethod" value="backupDB" />
  <property name="concurrent" value="false" />
</bean>

负责处理的触发器触发方法:

<bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
  <property name="jobDetail" ref="exampleJob" />
  <!-- run every morning at 6 AM, use regular cron expressions-->
  <property name="cronExpression" value="0 0 6 * * ?" />
</bean>

用于连接触发器的schedulerFactoryBean:

<bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
  <property name="triggers">
    <list>
      <ref bean="cronTrigger" />
    </list>
  </property>
</bean>

进一步参见 2.5 的 Spring 文档这里 3.0。

Yes you can, though it seems a bit overkill. Backuping an MSSQL db can be done using commandline tools, which you can easily schedule to run using cron if you are using Unix or Scheduled Tasks on Windows.

%PATH_TO_SQL_SERVER%\Tools\Binn\osql.exe
-E -Q "BACKUP DATABASE mydb TO DISK='%PATH_TO_BKP%\db.bak' WITH FORMAT"

For you question the answer is something like this: (shameless self-copy from here)

The job referring to your business object which has the method which takes care of the backup:

<bean id="jobDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
  <property name="targetObject" ref="exampleBusinessObject" />
  <property name="targetMethod" value="backupDB" />
  <property name="concurrent" value="false" />
</bean>

The trigger that takes care of firing the method:

<bean id="cronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
  <property name="jobDetail" ref="exampleJob" />
  <!-- run every morning at 6 AM, use regular cron expressions-->
  <property name="cronExpression" value="0 0 6 * * ?" />
</bean>

The schedulerFactoryBean for wiring the trigger:

<bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
  <property name="triggers">
    <list>
      <ref bean="cronTrigger" />
    </list>
  </property>
</bean>

See further in Spring documentation for 2.5, here for 3.0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文