I need to build a program in java which will insert a data into mysql database after every 10 min.And this will continue as long as the user terminates the program. Do I need Thread to build the program? Please suggest references or a block of code that will invoke automatically after every 10 min.
insert data into database after an interval by Java
795 Views Asked by Faysal Ahmed At
2
There are 2 best solutions below
0

You may use the Timer Task for achieving it.
A task that can be scheduled for one-time or repeated execution by a Timer.
I would use the
java.util.concurrent.*
package since it's newer and better for threading (which all timers/delay's will need to implement in order to not block your program)This example will execute your task, then re-schedule itself automatically... nice! (the try/finally block ensures no exception will break our schedule):
UPDATE --
How to invoke:
OR
You can invoke it from object constructor: