Latest Answer: Not true, the class can be accessed by an outer-class. ...
Latest Answer: there are 4 access specifiers defined in java.private: who can be accessed within class only.default:who can be accessed within the same package.protected: who can be accessed within the same package and by subclass of other package.public: who can be ...
I need to build a 4-Tier System, where I have a presentation-Tier, a Business-Tier, a Data-Tier and a 4th tier compose by remote machines. What is the best JAVA solution, between all the JSP, Servlet's, EJB, etc. ?
Latest Answer: Install Tomcat or JBoss for servlet containers. ...
What is the difference between Abstract Factory Pattern and factory Pattern? When would you use each of them?
Latest Answer: Abstract factory pattern is typically used for giving implementation to specification (eg., jdbc, servlet specifications etc...). Factory pattern is used when you want to defer object creation to later stages (when concrete implementation of that class/interface ...
How does the container manage to store the conversational state of the client in case of a Stateful Session Bean ?
Latest Answer: Struts created internal objects are simple class objects so does not support the all the features provided by ejb container such as transaction managment,persistancy,Security features ,Connection pooling etc. ...
In Distributable environment,what happens if our component throws an exception(may be checked/unchecked) to others who r using our component. we must handle here itself or let it leave to others to handle? plz. reply soon
Explain about 3-tier architecture in Java
Latest Answer: middle tier is primarly based on processing the bussiness logic. The main idea of dividing into tiers is like the application developer can concentrate on specific tier in developing webapplication and the changes that effect the entire application ...
How to write into the webcontainer and see those messages using public void log(String msg) and public void log(String msg ,Throwable t)?
View page << Previous 5 6 7 8 [9] 10 Next >>

Go Top