The Artima Developer Community
Sponsored Link

Java Answers Forum
help needed....

1 reply on 1 page. Most recent reply: Feb 11, 2005 11:37 AM by Brian Pontarelli

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
suma

Posts: 8
Nickname: suma2k4
Registered: Oct, 2004

help needed.... Posted: Feb 1, 2005 6:11 AM
Reply to this message Reply
Advertisement
Hi,

Wt r the differences between custom JSP tags & taglib?
Wt is the difference between oracle 8i and oracle 9i?
Wt r the drawbacks of EJB?

Also pl send me interview que to my mail id:
suma2k4@indiatimes.com.

thanks in adv
Suma


Brian Pontarelli

Posts: 5
Nickname: brokenwren
Registered: Oct, 2004

Re: help needed.... Posted: Feb 11, 2005 11:37 AM
Reply to this message Reply
> Wt r the differences between custom JSP tags & taglib?
They are the same. In the 1.4 version of J2EE you can create tablibs without any Java code, which does make a taglib slightly different than a JSP tag. But in previous versions taglibs and custom tags are both Java classes that extend one of the JSP classes.

> Wt r the drawbacks of EJB?
EJB is a heavy weight architecture. You need multiple interfaces and multiple configuration files to deploy an EJB. Unless you need transactions or sessions for your services, EJB is usually too much overhead. EJB 3 is designed around lighter weight POJO development, but is not finalized yet. Even if you need transactions, you might be able to work with something like JOTA and Spring instead of EJB. The book "Bitter EJB" is an excellent resource and there are lots of articles out in the community regarding EJBs drawbacks and alternatives. A good starting point is also the Spring framework (www.springframework.org).

Flat View: This topic has 1 reply on 1 page
Topic: Java PrintComponents Setting Default Fonts... Previous Topic   Next Topic Topic: Hyperlink in JTable

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use