超过12小时没有审核,则默认通过,请问这个该怎么实现呢?
其实审核的功能
就是 改变下 state 状态,
默认状态是:"未审核"
审核之后是:把状态改为 "已通过" 或者 "不通过" (由管理员审核)
如果没有审核,则时间超过了12小时的话,默认审核 为"已通过"。
请问这个该怎么实现呢?
[解决办法]
使用Java中的定时任务TimerTask
具体使用方法详见API
[解决办法]
查询通过的时候,两个范围:通过的 、 未通过的但时间超过12个小时的。
[解决办法]
用数据库提供的定时器,写个存储过程.
[解决办法]
如楼上所说的,基本上有两种方法,一种是定时,即12小时后,自动更改状态
另一种不用定时,但查询时,你要通过时间来判断是否超过了12小时,超过就把它当作已通过了
[解决办法]
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- DRG抓取包裹信息 1小时一次 end-->
<!-- TMS转运 1小时一次-->
<bean id="timeGetPackageState2Infomation" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
<property name="targetObject">
<ref bean="tmsRouteSearchManagerAction"/><!-- 自己在定义 的struts的bean名字-->
</property>
<property name="targetMethod">
<value>getPackageInfomation</value><!-- 调用执行的方法-->
</property>
</bean>
<bean id="timeGetPackageState2InfomationTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail">
<ref bean="timeGetPackageState2Infomation"/> <!--调用上面声明的bean -->
</property>
<property name="cronExpression">
<value>0 */1 * * * ?</value> <!-- 每5分钟触发一次 -->
<!-- <value>0 0 */1 * * ?</value> 每1小时触发一次 -->
</property>
</bean>
<!-- TMS转运 1小时一次 end-->
<bean autowire = "no" class = "org.springframework.scheduling.quartz.SchedulerFactoryBean">
<property name="triggers">
<list>
<ref local="timeGetPackageState2InfomationTrigger"/>
</list>
</property>
</bean>
</beans>