January 2012
Intermediate to advanced
542 pages
11h 28m
English
In this recipe, we will see how to share reusable code in our application to improve performance.
To demonstrate the performance gain by sharing reusable code, the following example is written in Java, similar to the one presented in the previous recipe.
The following steps will demonstrate how to share reusable code:
OraclePerformanceTuningCookbook directory and a chapter02 directory inside it.SharedCode in the package chapter02 using the following code and save it in a file named SharedCode.java in the previously created chapter02 directory:package chapter02; import java.sql.*; public class SharedCode { private ...Read now
Unlock full access