Example usage for org.springframework.boot.web.server MimeMappings MimeMappings

List of usage examples for org.springframework.boot.web.server MimeMappings MimeMappings

Introduction

In this page you can find the example usage for org.springframework.boot.web.server MimeMappings MimeMappings.

Prototype

public MimeMappings(Map<String, String> mappings) 

Source Link

Document

Create a new MimeMappings from the specified mappings.

Usage

From source file:org.springframework.boot.web.servlet.server.AbstractServletWebServerFactory.java

@Override
public void setMimeMappings(MimeMappings mimeMappings) {
    this.mimeMappings = new MimeMappings(mimeMappings);
}