BraginiNI
BraginiNI

Reputation: 586

java web development

I am a novice in web development but I need to develop an application that will work in browser. But, the application should be like a destkop application. Application should implement simple functions like database table reflection, adding/deleting/updating table rows and calculating values based on formulas (I suppose here I should implement a java class that will make this calculations).

It seems to me I should use servlet+jsp but the application will not be static. Pages will always be refreshing. What java technologies I should use to implement my task? Maybe oracle ADF business componets in JDeveloper? Thanks!

Upvotes: 0

Views: 134

Answers (1)

Alpine
Alpine

Reputation: 3858

You can use AJAX to dynamically update your JSP page

Java - How to use Ajax in JSP (shows a simple example using JSP + AJAX)

Also See
Ajax Programming with JSP and Servlets (shows a simple example using JSP + AJAX + Servlet)

Upvotes: 1

Related Questions