Does J2EE support Enterprise applications?

Is Java Beans an application dependent components?

Does JavaBeans support sharing among the network?

1 Javabean can contain how many classes?

Does Servlets execution starts with main methods?

Recommended Answers

All 4 Replies

One has to wonder what J2EE would be if not Enterprisey...

One has to wonder what J2EE would be if not Enterprisey...

economical, efficient, excellent

Does J2EE support Enterprise applications?

Is Java Beans an application dependent components?

Does JavaBeans support sharing among the network?

1 Javabean can contain how many classes?

Does Servlets execution starts with main methods?

servlets doesnt start with main method....servlet has lifecycle methods which are executed by a web server or an application server....for resource like a servlet you deploy in the server the container(an application contained in a server)takes care of servlet...it creates object of the servlet...and provides the service.....The life cycle methods of a servlet are
public void init(arguments);
public void service(arguments);
public void destroy();
to find more about servlets see the j2ee api...that should tell you more about it....

well a java bean is a class which has getter and setter methods...with fields which are private...
J2EE technologies like(servlets,jsp,EJB(for n-tier applications)) are exclusive for enterprise applications.....

commented: Ignoring forum rule "We only give homework help to those who show effort" bad -2
commented: don't help homework kiddos -2
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.