PlanStartDefault.java 270 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package com.yanzuoguang.redis.def; import com.yanzuoguang.redis.PlanStart; /** * 启动时是否立即运行 * * @author 颜佐光 */ public class PlanStartDefault implements PlanStart { @Override public boolean isStartRun() { return true; } }