`
smallmonkeandyjj
  • 浏览: 6406 次
  • 性别: Icon_minigender_1
  • 来自: 上海
文章分类
社区版块
存档分类
最新评论

Spring定时器

阅读更多
--------配置文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

<!--  配置触发器 -->
<bean id="hour" class="com.hh.dao.HourDao" />

<bean id="method"
class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
<property name="targetObject" ref="hour"/>
<property name="targetMethod" value="evaluate"/>
</bean>

<bean id="triger"
class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail" ref="method" />
<property name="cronExpression">
<value>0,15,30,45 * * * * ?</value>
</property>
</bean>

<!--  启动触发器 -->
<bean
class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
<property name="triggers">
<list>
<ref bean="triger" />
</list>
</property>
</bean>


</beans>

----------定时调用配置文件
package com.hh.dao;

import java.io.File;
import java.io.FileWriter;
import java.text.SimpleDateFormat;
import java.util.Date;

import org.dom4j.Document;
import org.dom4j.Element;
import org.dom4j.io.OutputFormat;
import org.dom4j.io.SAXReader;
import org.dom4j.io.XMLWriter;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.hh.entity.HourBean;

public class HourDao {
private HourBean hb;
XmlDao x=new XmlDao();
ApplicationContext context=new ClassPathXmlApplicationContext("Config.xml");
public  HourDao(){
hb=(HourBean) context.getBean("con");
}

//判断(设置)尖峰平谷.有无功表码.功率(值)
public void  evaluate(){
XmlDao x=new XmlDao();
hb.setTime(new Date());

int nowTime=new Date().getHours();
//谷
if(nowTime>=10 && nowTime<11){
hb.setValley(hb.getValley()+new Float(30+Math.random()*0.7).floatValue());
hb.setUnValley(hb.getUnValley()+new Float(20+Math.random()*0.6).floatValue());
}
//平
else if(nowTime>=11 && nowTime <12){
hb.setPing(hb.getPing()+new Float(Math.random()*0.8).floatValue());
hb.setUnPing(hb.getUnPing()+new Float(Math.random()*1).floatValue());
}
//峰
else if(nowTime>=12 && nowTime<13){
hb.setApex(hb.getApex()+new Float(Math.random()*3).floatValue());
hb.setUnApex(hb.getUnApex()+new Float(Math.random()*2).floatValue());
}
//尖
else{
hb.setNeedle(hb.getUnNeedle()+new Float(Math.random()*5).floatValue());
hb.setUnNeedle(hb.getNeedle()+new Float(Math.random()*4).floatValue());
}

//有功表码
hb.setPowerNum(new Float(hb.getNeedle()+hb.getApex()+hb.getPing()+hb.getValley()).floatValue());
//无功表码
hb.setUnPowerNum(new Float(hb.getUnNeedle()+hb.getUnApex()+hb.getUnPing()+hb.getUnValley()).floatValue());
    //有功功率
hb.setPower(new Float(Math.random()*20).floatValue());
//无功功率
hb.setUnPower(new Float(-20+Math.random()*10).floatValue());

//设置ABC电压电流
hb.setAVoltage(new Float(220+Math.random()*100).floatValue());
hb.setBVoltage(new Float(220+Math.random()*100).floatValue());
hb.setCVoltage(new Float(220+Math.random()*100).floatValue());

hb.setACurrent(new Float(20+Math.random()*50).floatValue());
hb.setBCurrent(new Float(20+Math.random()*50).floatValue());
hb.setCCurrent(new Float(20+Math.random()*50).floatValue());


try {
Document doc=x.addRoot(hb);
this.keepData("E:\\workspace7.0\\变压器时数据\\"+new SimpleDateFormat("yyyy").format(new Date())+"年"
+new SimpleDateFormat("MM").format(new Date())
+"月"+new SimpleDateFormat("dd").format(new Date())+"日"+hb.getTranId()+"小时数据"+".xml", doc, hb);
System.out.println("OK!");
} catch (Exception e) {
e.printStackTrace();
}

}
//写XML
public void keepData(String file,Document doc,HourBean hb)throws Exception{
if(new File(file).exists()){
SAXReader read=new SAXReader();

Document document=read.read(new File(file));

Element ele=document.getRootElement();

x.createHourEle(ele,hb);

FileWriter fw=new FileWriter(new File(file));
OutputFormat of=OutputFormat.createPrettyPrint();
of.setEncoding("gbk");
of.setIndent(true);
XMLWriter writer=new XMLWriter(fw,of);
writer.write(document);
writer.flush();
writer.close();
}else{
FileWriter fw=new FileWriter(new File(file));
OutputFormat of=OutputFormat.createPrettyPrint();
of.setEncoding("gbk");
of.setIndent(true);
XMLWriter writer=new XMLWriter(fw,of);
writer.write(doc);
writer.flush();
writer.close();
}
}
public static void main(String[] args) {
ApplicationContext context=new ClassPathXmlApplicationContext("HourTrigger.xml");

   
}
}
分享到:
评论

相关推荐

    spring定时器 spring定时器

    Spring定时器,也被称为Spring Boot的定时任务,是Spring框架中的一个强大功能,它允许开发者在应用程序中安排周期性任务的执行。这个功能基于Java的`java.util.concurrent.ScheduledExecutorService`,并通过Spring...

    java 定时器 spring 定时器

    Java定时器和Spring定时器是Java开发中用于执行周期性任务的重要工具,它们在系统维护、数据同步、报告生成等场景中发挥着关键作用。本文将深入探讨这两个概念,以及如何在Spring框架中配置和使用定时器。 首先,...

    spring定时器简单的demo

    Spring提供了Spring Task模块来实现定时任务,也就是我们常说的Spring定时器。这个"spring定时器简单的demo"应该包含了一个使用Spring Task实现简单定时任务的例子。 首先,Spring Task的配置通常在`...

    spring定时器

    以上内容详细介绍了Spring定时器的相关知识点,包括其基本概念、不同类型的定时器以及实际应用中的配置和实现方法。通过理解和掌握这些知识,开发者可以更高效地利用Spring框架来实现复杂的定时任务功能。

    spring定时器简单实例

    Spring定时器,也被称为Spring Boot的定时任务,是Spring框架中的一个强大功能,它允许开发者在特定的时间间隔执行任务,而无需手动管理线程。在实际的开发中,这一特性常用于实现数据清理、统计计算、发送邮件等...

    SPRING 定时器的使用

    ### Spring 定时器的使用 #### 背景与需求 在开发应用程序时,并非所有操作都需要用户主动触发。有些任务需要系统自动执行,比如数据同步、定期备份等。例如,电力行业的集抄系统(一种自动收集电表读数的系统)...

    spring 定时器

    Spring定时器,全称为Spring Framework中的Task Execution and Scheduling模块,是Spring提供的一种用于执行计划任务的工具。这个模块使得开发者能够方便地在应用程序中安排周期性任务,而无需依赖像Quartz或Cron...

    spring 定时器完整实例 demo

    下面是一个完整的Spring定时器示例: 1. **配置Spring配置类** 首先,我们需要创建一个配置类,启用定时任务支持,并提供一个`ThreadPoolTaskScheduler`实例,用于调度任务。 ```java @Configuration @...

    spring定时器时间配置

    本文旨在深入解析Spring定时器的时间配置规则,并通过具体的代码示例进行演示。 #### Cron表达式的构成 Cron表达式由六个或七个空格分隔的时间元素组成,这些元素分别代表: 1. **秒** (0–59) 2. **分钟** (0–59...

    spring定时器的包和配置文件

    在标题"spring定时器的包和配置文件"中,我们讨论的核心是Spring如何配置和使用定时器来自动化执行特定的任务。 首先,让我们了解Spring定时任务的基本概念。Spring定时器基于Java的`java.util.Timer`和`java.util....

    spring 定时器的两种实现

    在Spring框架中,有两种主要的方法来实现定时任务:Spring自带的`@Scheduled`注解和引入第三方库Quartz。这两种方法都可以帮助开发者在特定的时间点执行任务,为应用程序添加计划任务的能力。 首先,我们来看看使用...

    JAVA获取当前时间以及JAVA_Spring定时器

    Spring定时器(TaskScheduler或ScheduledTasks): 在Spring框架中,我们可以利用`@Scheduled`注解和`TaskScheduler`接口来实现定时任务。`@Scheduled`注解可以直接在方法上,声明该方法为周期性执行的任务。例如: ...

    springAop与spring定时器

    Spring AOP(面向切面编程)是Spring框架中的一个重要组件,它允许我们在不修改源代码的情况下,通过在程序运行时动态地将代码插入到方法调用中,来实现跨切面的关注点,如日志记录、性能监控、事务管理等。而Spring...

    Spring定时器与动态代理实例

    在Spring中,定时任务的实现通常通过Spring Task模块,也就是我们常说的Spring定时器。这个实例将深入探讨如何利用Spring来创建和管理定时任务,并结合动态代理技术来增强功能。我们将从以下几个方面进行讲解: 1. ...

    spring定时器的动态设置

    标题“spring定时器的动态设置”涉及到的是Spring框架中的任务调度功能,主要使用的是Spring的`@Scheduled`注解和`TaskScheduler`接口。在Java应用中,有时我们需要执行一些定时任务,例如清理缓存、数据同步等,...

    Spring定时器quartz

    Spring定时器Quartz是Java应用中广泛使用的任务调度框架,它允许开发者定义并执行复杂的定时任务。这篇博客可能探讨了如何在Spring框架中集成Quartz,以实现灵活、可扩展的任务调度。 Quartz是一个开源的作业调度...

    spring定时器,定时调用任务配置

    本篇将详细介绍如何配置和使用Spring的定时器来定时调用任务。 首先,让我们了解Spring Task的核心组件。`TaskExecutor`接口用于异步执行任务,而`TaskScheduler`接口则用于调度定时任务。在这个场景中,我们将重点...

    Spring定时器配置详解

    Spring 定时器配置详解 Spring 定时器是一种基于 Quartz 的任务调度框架,它提供了一个灵活的方式来管理和控制任务的执行。下面是 Spring 定时器配置的详细解释。 配置 CronTriggerBean CronTriggerBean 是 ...

    Spring中的Quartz配置-Spring-定时器-java定时器.doc

    Spring 中的 Quartz 配置-Spring 定时器-java 定时器 在 Spring 框架中,Quartz 是一个非常流行的开源作业调度器,可以实现任务的定时执行。在本篇文章中,我们将讨论如何在 Spring 中配置 Quartz,以实现 Java ...

Global site tag (gtag.js) - Google Analytics