Submitted by heartin on Fri, 04/10/2015 - 08:15
-
How can you call a JSP page using a request dispatcher?
-
How can you suppress direct access to a JSP file through a client request?
Submitted by heartin on Fri, 03/20/2015 - 09:24
-
What are the three ways in which you can tell the container that your class is a servlet?
-
Compare filters with RequestDispatcher mechanism.
-
Can you include or forward to filters using the RequestDispatcher mechanism?
-
What will happen if you call two RequestDispatcher forwards or includes from within a servlet's doXXX method?
-
Can you use wrappers to have two RequestDispatcher forward requests without any exception?
Submitted by heartin on Fri, 10/24/2014 - 03:55
There is a class in Java called Object and is present in the package java.lang.Object. This is different from the concept of objects in object oriented programing, and begenners may get confused. Note that is is just a class in Java with the name as Object.
Object class API basics
Submitted by heartin on Thu, 10/23/2014 - 10:07
The while statement
The “while loop” is an alternative to “for loop”. a “for loop” is usually used when the number of times the block is to be executed is known. A “while loop” is usually used when the number of times the block is to be executed is not known, like prompting the user whether to stop executing during every iteration.
The syntax of “while loop” is:
while (<condition>) <statements>;
Example:
Submitted by heartin on Tue, 04/22/2014 - 23:19
Gradle lifecycle
Gradle lifecycle consist of three phases: initialization, configuration, and execution:
-
During Initialization, Gradle decides which projects are to participate in the build.
-
During Configuration, task objects are assembled into an internal object model, usually called the DAG (for directed acyclic graph).
Pages