I have over seven years of extensive database experience and am trying to figure what components of J2EE I need to understand in order to be able to apply my experience
in designing/developing web enabled databases.
Would anyone be able to suggest a road map for a database programmer trying to understand J2EE in the context of the database tier of the internet application architecture and its interactions with other tiers ?
-
J2EE for Database Application Programmers (3 messages)
- Posted by: Nayantara Mehta
- Posted on: April 09 2002 21:47 EDT
Threaded Messages (3)
- J2EE for Database Application Programmers by Alex Pisarev on April 10 2002 11:27 EDT
- J2EE for Database Application Programmers by viren jasani on April 10 2002 14:01 EDT
- J2EE for Database Application Programmers by eric baker on April 11 2002 12:02 EDT
-
J2EE for Database Application Programmers[ Go to top ]
- Posted by: Alex Pisarev
- Posted on: April 10 2002 11:27 EDT
- in response to Nayantara Mehta
Interesting question... The databases are usually the same, the only thing you've to understand is how your database tables are going to be mapped onto objects, O/R mapping is the first problem you should be concerned of.
Alex. -
J2EE for Database Application Programmers[ Go to top ]
- Posted by: viren jasani
- Posted on: April 10 2002 14:01 EDT
- in response to Nayantara Mehta
Hi mehta
I think you want to Learn that part of J2EE which is directly related to data base. I think you should concentrate on EJB and XML related work. XML is extensively used for creating static data base. Also in EJB you can study about how data base related problem should be scratched in term of EJBs.
-Viren Jasani
viren_jasani@hotmail.com -
J2EE for Database Application Programmers[ Go to top ]
- Posted by: eric baker
- Posted on: April 11 2002 12:02 EDT
- in response to Nayantara Mehta
If you are just talking about creating a database driven application, start with the basics.
Familiarize yourself with JDBC. Once you understand how to accomplish transactions, batch jobs, preparred statments, result sets, and a couple of the root JDBC items you will be ready to move on.
After JDBC, start in on EJBs. Understand Entity Beans and probably become familiar with OR mapping tools like CoccoBase and TopLink.
Finally, look at the new JDO spec.
If you are talking about becoming familiar with J2EE in itself, just go through the components that make up the spec.