• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Good IDE for applet-servlet-database develpoment

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey guys,
My company is building a system where the front end client is an applet running in browser which then needs to display and manipulate data from a database on the server, preferably through a Servlet or RMI on the middle tier. Does JBuilder or any of the other big IDEs provide any wizards or automatic data-binding features that would bind the GUI components in the applet to the tables/columns in the database (automatically generating the Servlet or RMI code that relays the JDBC calls)?
Or something similar to this?

Thanks,

Steve Knight
 
Sheriff
Posts: 6450
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Steve Knight:
Hey guys,
My company is building a system where the front end client is an applet running in browser which then needs to display and manipulate data from a database on the server, preferably through a Servlet or RMI on the middle tier. Does JBuilder or any of the other big IDEs provide any wizards or automatic data-binding features that would bind the GUI components in the applet to the tables/columns in the database (automatically generating the Servlet or RMI code that relays the JDBC calls)?
Or something similar to this?

Thanks,

Steve Knight


JBuilder does have a very good set of swing components that will bind to what they call dataset objects. Dataset objects talk with the database or otherwise contain data from the database. So it really takes no work to build an applet that displays a table of information contained in your database and resolves changes back to the database, for example. Just point and click type stuff. If you want to do Applet-Servlet, or Applet-RMI communication however, you will have to do some of the work yourself.
I had actually done a quick proof-of-concept of Applet-Servlet-RMI communication with JBuilder. It took a bit of work to get things working smootly, but I guess it probably would have taken more work had I not been using their datasets and dataset aware components.
[This message has been edited by Jason Menard (edited December 13, 2001).]
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic