setViewEngine method

Application setViewEngine(
  1. String viewEngine
)

setViewEngine is a method that sets the default viewEngine of views of the application.

Implementation

Application setViewEngine(String viewEngine) {
  this.viewEngine = viewEngine;
  return this;
}