Introduction
The template method pattern is a behavioral design pattern which provides a base method for an algorithm, called a template method which defers some of its steps to subclasses. So the algorithm structure is the same but some of its steps can be redefined by the subclasses according to the context.
Template means Preset format like HTML templates which have a fixed preset format. Similarly, in the template method pattern, we have a preset structure method called template method which consists of steps. These steps can be an abstract
method which will be implemented by its subclasses.
So in short, you can say, in the template method pattern, there is a template method which defines a set of steps and the implementation of steps can be deferred to subclasses. Thus, a template method defines an algorithm but the exact steps can be defined in subclasses.
When To Use It
- When you have a preset format or steps for an algorithm but implementation of steps may vary.
- When you want to avoid code duplication, implementing a common code in the base class and variations in subclass.
Structure

So in the above diagram, as you can see, we have defined a template method with three steps: operation1
, operation2
, and operation3
. Among them, operation1
and operation2
are abstract steps, so these are implemented by ConcreteClass
. We have implemented operation3
here. You can implement an operation in a base class in two scenarios: first is if it is common to all, and second is if it is the default implementation of that method. The UML diagram will be much clearer now.

Components
AbstractClass
- It defines a template method defining the structure of an algorithm.
- It also defines
abstract
operations that will be implemented by subclasses to define the steps of an algorithm.
ConcreteClass
- It implements an
abstract
operation of a super class to carry out subclass specific steps of the algorithm and also overrides an operation if the default behavior is not required.
Important Points about Template Method Pattern
- The template method in a super class follows “the Hollywood principle”: “Don't call us, we'll call you”. This refers to the fact that instead of calling the methods from the base class in the subclasses, the methods from the subclass are called in the template method from the superclass.
- Template method in the super class should not be overridden so make it final.
- Customization hooks: Methods containing a default implementation that may be overridden in other classes are called hook methods. Hook methods are intended to be overridden, concrete methods are not. So in this pattern, we can provide hook methods. The problem is sometimes it becomes very hard to differentiate between hook methods and concrete methods.
- Template methods are techniques for code reuse because with this, you can figure out a common behavior and defer specific behavior to subclasses.
Example
Let's take an example. When you have to read from two data sources, e.g., CSV and database, then you have to process that data and generate the output as CSV files. Here, three steps are involved.
- Read data from the corresponding data source
- Process data
- Write output to CSV files

Java Code
The class below contains a template method called parseDataAndGenerateOutput
which consists of steps for reading data, processing data, and writing to a CSV file.
1. DataParser.java
package org.arpit.javapostsforlearning;
abstract public class DataParser {
public void parseDataAndGenerateOutput()
{
readData();
processData();
writeData();
}
abstract void readData();
abstract void processData();
public void writeData()
{
System.out.println("Output generated,writing to CSV");
}
}
In the below class, CSV specific steps are implemented in this class.
2. CSVDataParser.java
package org.arpit.javapostsforlearning;
public class CSVDataParser extends DataParser {
void readData() {
System.out.println("Reading data from csv file");
}
void processData() {
System.out.println("Looping through loaded csv file");
}
}
In the below class, database specific steps are implemented.
3. DatabaseDataParser.java
package org.arpit.javapostsforlearning;
public class DatabaseDataParser extends DataParser {
void readData() {
System.out.println("Reading data from database");
}
void processData() {
System.out.println("Looping through datasets");
}
}
4. TemplateMethodMain.java
package org.arpit.javapostsforlearning;
public class TemplateMethodMain {
public static void main(String[] args) {
CSVDataParser csvDataParser=new CSVDataParser();
csvDataParser.parseDataAndGenerateOutput();
System.out.println("**********************");
DatabaseDataParser databaseDataParser=new DatabaseDataParser();
databaseDataParser.parseDataAndGenerateOutput();
}
}
Output
Reading data from csv file
Looping through loaded csv file
Output generated, writing to CSV
**********************
Reading data from database
Looping through datasets
Output generated,writing to CSV
Used in the Java API