This app must perform connection to a web service, grab data, save it in the database.
Every hour 24/7.
What’s the most effective way to create such an app in java?
How should it be run – as a system application or as a web application?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
look at quartz, its a scheduling library in java. they have sample code to get you started.
you’d need that and the JDBC driver to your database of choice.
no web container required – this can be easily done using a stand alone application