All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jeesuite.cache.CacheExpires Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/**
 * 
 */
package com.jeesuite.cache;

import java.util.Date;

import com.jeesuite.common.util.DateUtils;

/**
 * 
 * @description 
* @author vakin * @date 2015年4月28日 */ public class CacheExpires { public final static long IN_1MIN = 60; public final static long IN_3MINS = 60 * 3; public final static long IN_5MINS = 60 * 5; public final static long IN_1HOUR = 60 * 60; public final static long IN_HALF_HOUR = 60 * 30; public final static long IN_1DAY = IN_1HOUR * 24; public final static long IN_1WEEK = IN_1DAY * 7; public final static long IN_1MONTH = IN_1DAY * 30; /** * 当前时间到今天结束相隔的秒 * @return */ public static long todayEndSeconds(){ Date curTime = new Date(); return DateUtils.getDiffSeconds(DateUtils.getDayEnd(curTime), curTime); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy