Is it legal to have static initializer blocks in EJB?
Although technically it is legal, static initializer blocks are used to execute some piece of code before executing any constructor or method while instantiating... Read more »
Although technically it is legal, static initializer blocks are used to execute some piece of code before executing any constructor or method while instantiating... Read more »
EJB was originally designed around remote invocation using the Java Remote Method Invocation (RMI) mechanism, and later extended to support to standard CORBA transport... Read more »
SEI = ‘Software Engineering Institute’ at Carnegie-Mellon University; initiated by the U.S. Defense Department to help improve software development processes. CMM... Read more »
A good test engineer has a ‘test to break’ attitude, an ability to take the point of view of the customer, a strong desire for quality, and an attention... Read more »
Documentation change management is part of configuration management (CM). CM covers the tools and processes used to control, coordinate and track code, requirements,... Read more »
Documentation plays a critical role in QA. QA practices should be documented, so that they are repeatable. Specifications, designs, business rules, inspection reports,... Read more »
First, unit testing has to be completed. Upon completion of unit testing, integration testing begins. Integration testing is black box testing. The purpose of integration... Read more »
Clear box testing is the same as white box testing. It is a testing approach that examines the application’s program structure, and derives test cases from... Read more »
Closed box testing is same as black box testing. Black box testing a type of testing that considers only externally visible behavior. Black box testing considers... Read more »
Open box testing is same as white box testing. It is a testing approach that examines the application’s program structure, and derives test cases from the... Read more »
JSP page can include the contents of other HTML pages or other JSP files. This is done by using the include directive. When the JSP engine is presented with such... Read more »
JSP page looks like a HTML page but is a servlet. When presented with JSP page the JSP engine does the following 7 phases. 1. Page translation: -page is parsed,... Read more »
The JSP engine builds a servlet. The HTML portions of the JavaServer Page become Strings transmitted to print methods of a PrintWriter object. The JSP tag portions... Read more »
Since there are many things can go wrong to a single executed statement, we should have more than one catch(s) to catch any errors that might occur. Read more »
The two most common techniques for reusing functionality in object-oriented systems are class inheritance and object composition. Class inheritance lets you define... Read more »