• 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

J2EE Exam for interview

 
Ranch Hand
Posts: 235
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi gang,
I've been called to take a J2EE exam for a Web Developer position. While JSP/Servlets are old news to me, I'm very much a novice when it comes to EJB's, which I was told weighed heavily on the exam score. I can whip up and deploy a mean stateless session bean pretty quickly, but that's where it stops.
If anyone has taken a test like this, or has any good resources for cramming, or other advice (giving up is not an option!), please let me know.
 
Ranch Hand
Posts: 1551
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think this will help.
jGuru Short Course
 
Ranch Hand
Posts: 1953
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by John Fontana:
giving up is not an option!


I like this attitude! Do your best, but don't panic. Then
You are always a winner.
 
John Fontana
Ranch Hand
Posts: 235
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Rufus Bugleweed:
I think this will help.
jGuru Short Course


Thanks! This looks like a great tutorial...right now I'm trying to get an IDE/Container combination working so I can debug and learn more quickly (So far the best setup I've found is JDeveloper because of the embedded OC4J Server)...
 
John Fontana
Ranch Hand
Posts: 235
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Roseanne Zhang:

I like this attitude! Do your best, but don't panic. Then
You are always a winner.


Thank you, and I love your site! Especially the scenario of the programmer who worked with servlets before they were invented...I was recently turned down for an interview because they required that I worked with Swing components before they were invented...
 
Ranch Hand
Posts: 664
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I attended IBM developer's conference about 2 years ago, they had a lot of very interesting, as well as advanced topics on EJBs and overall architecture of Java-running web sites. Try ibm.com , you'd have to dig around to find where their learning center is.
[edit: added comments below]
Actually, a good start is here:
http://www-3.ibm.com/software/webservers/components/education.html
One project I had was using WebSphere 2.5 (2.x or something, it was a while back), JSP, Servlets, etc. People keep asking me why we didn't use EJBs on it. Java Beans haven't been invented yet!
Shura
[ May 19, 2002: Message edited by: Shura Balaganov ]
 
John Fontana
Ranch Hand
Posts: 235
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Shura Balaganov:

Actually, a good start is here:
http://www-3.ibm.com/software/webservers/components/education.html
One project I had was using WebSphere 2.5 (2.x or something, it was a while back), JSP, Servlets, etc. People keep asking me why we didn't use EJBs on it. Java Beans haven't been invented yet!
Shura
[ May 19, 2002: Message edited by: Shura Balaganov ]



Great link -- I look forward to learning EJB, but at the same time I wonder if EJB's aren't overkill. It will take some time working with it before I stop thinking that they are just a way for IT companies to squeeze a million dollars out of companies when all they need is a decent Perl message board!
 
Ranch Hand
Posts: 775
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by John Fontana:

Great link -- I look forward to learning EJB, but at the same time I wonder if EJB's aren't overkill.


Sometimes the most important thing to learn about a technology is not how to make it work, but why it exists. EJB (or more to the point, all of J2EE) isn't a tool to achieve simplicity, if you think of simplicity as meaning the smallest amount of code. It is a tool to achieve separation of concerns, and hence divisibility of the work.
Divisibility doesn't matter for small one-man projects. It is very useful for multi-person projects. Divide-and-conquer strategies make each piece simpler; the whole, when assembled, may be more complex than you'd expect from other kinds of technologies... but for multi-person projects you may not have been able to keep the piece work organized enough to end up with a working whole.
 
reply
    Bookmark Topic Watch Topic
  • New Topic