Skip to content

This repository will create a dashboard for schedules in your java application . From the schedule dashboard you can monitor your schedule and also you can run a particular schedule before its next run time.

License

Notifications You must be signed in to change notification settings

VarshaUpadhyay/ScheduleDashboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maven Central

ScheduleDashboard

This repository will create a dashboard for schedules in your java application. From the schedule dashboard you can monitor your schedule and also you can run a particular schedule before its next run time.

Working Example

@Component
@EnableScheduling
@EnableScheduleDashboard
@ComponentScan(basePackageClasses = ApplicationController.class)
public class ScheduleTest{
	@Scheduled(fixedDelay = 20000)
	public void test1() {
		System.out.println("test1 is running.....");
	}
	}

Go to (http://your_host:your_port/schedule) to access dashboard.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

About

This repository will create a dashboard for schedules in your java application . From the schedule dashboard you can monitor your schedule and also you can run a particular schedule before its next run time.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published