Example usage for org.springframework.boot.autoconfigure.mustache MustacheEnvironmentCollector MustacheEnvironmentCollector

List of usage examples for org.springframework.boot.autoconfigure.mustache MustacheEnvironmentCollector MustacheEnvironmentCollector

Introduction

In this page you can find the example usage for org.springframework.boot.autoconfigure.mustache MustacheEnvironmentCollector MustacheEnvironmentCollector.

Prototype

MustacheEnvironmentCollector

Source Link

Usage

From source file:org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration.java

private Collector collector() {
    MustacheEnvironmentCollector collector = new MustacheEnvironmentCollector();
    collector.setEnvironment(this.environment);
    return collector;
}