June 2018
Intermediate to advanced
596 pages
12h 39m
English
We will create a simple standalone Java application so that it is easy for you to learn how to profile using VisualVM. Although it will be a standalone application, we will create classes that are similar to those we created for the CourseManagement web application in some of the previous chapters, particularly CourseDTO, CourseBean (JSP bean), CourseService (service bean), and CourseDAO (for database access).
package packt.jee.eclipse.profile.dto; public class CourseDTO { private int id; private String name; private int credits; //skipped Getters ...Read now
Unlock full access