2024/2025
The name of the library of classes that allows for Unit Testing in Java - ANSWERSJUnit
With Unit Testing, you create a test method for each of these for the actual code methods -
ANSWERSboundary conditions
in order to deploy a java web application, you drop this type of file on your server (what's going on in
Ukraine?) - ANSWERSWAR file
with Java web applications, you can choose to do either pure server-side development or rely some on
client-side development. Using JavaScript would indicate this type - ANSWERSclient-side
Through this process (abbreviated CI), your code will have to pass a series of control checks before its
deployed on the web server. - ANSWERSContinuous Integration
The name of the specific JSF-Based UI Extension library we used to build the Menu in-class -
ANSWERSPrimeFaces
Yawn, I'll create this object tomorrow - ANSWERSLazy Initialization
when you need to have multiple objects that act like Singletons - ANSWERSMultiton Pattern
a class accepts the objects it requires from an injector instead of creating the objects directly -
ANSWERSdependency injection
specify the kinds of objects to create using a prototypical instance, and create new objects from the
'skeleton' of an existing object, thus boosting performance and keeping memory footprints to a
minimum - ANSWERSprototype pattern