I need to update the news feeds for every 5 minutes from a rss feed . For this i have written a TimerTask as shown below public class TimerTaskForAllNews { public static void main( String[] args ) { TimerTask task = new AllNewsUpdatrUtility(); Timer timer = new Timer(); timer.schedule(task, 1000,60000); } } This is my […]
The post Do i need to create of DocumentBuilderFactory everytime in this case? appeared first on BlogoSfera.