Juergen Hoeller
12 years ago
committed by
unknown
3 changed files with 79 additions and 4 deletions
@ -0,0 +1,65 @@
@@ -0,0 +1,65 @@
|
||||
/* |
||||
* Copyright 2002-2013 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.scheduling.config; |
||||
|
||||
import org.springframework.context.ApplicationContext; |
||||
import org.springframework.context.ApplicationContextAware; |
||||
import org.springframework.context.ApplicationListener; |
||||
import org.springframework.context.event.ContextRefreshedEvent; |
||||
|
||||
/** |
||||
* {@link ScheduledTaskRegistrar} subclass that redirect the actual scheduling |
||||
* of tasks to the {@link ContextRefreshedEvent} callback. Falls back to regular |
||||
* {@link ScheduledTaskRegistrar} behavior when not running within an ApplicationContext. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 3.2.1 |
||||
*/ |
||||
public class ContextLifecycleScheduledTaskRegistrar extends ScheduledTaskRegistrar |
||||
implements ApplicationContextAware, ApplicationListener<ContextRefreshedEvent> { |
||||
|
||||
private ApplicationContext applicationContext; |
||||
|
||||
|
||||
public void setApplicationContext(ApplicationContext applicationContext) { |
||||
this.applicationContext = applicationContext; |
||||
} |
||||
|
||||
|
||||
/** |
||||
* If we're running within an ApplicationContext, don't schedule the tasks |
||||
* right here; wait for this context's ContextRefreshedEvent instead. |
||||
*/ |
||||
@Override |
||||
public void afterPropertiesSet() { |
||||
if (this.applicationContext == null) { |
||||
scheduleTasks(); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* Actually schedule the tasks at the right time of the context lifecycle, |
||||
* if we're running within an ApplicationContext. |
||||
*/ |
||||
public void onApplicationEvent(ContextRefreshedEvent event) { |
||||
if (event.getApplicationContext() != this.applicationContext) { |
||||
return; |
||||
} |
||||
scheduleTasks(); |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue