Example usage for org.springframework.web.servlet.view.xml MarshallingView setMarshaller

List of usage examples for org.springframework.web.servlet.view.xml MarshallingView setMarshaller

Introduction

In this page you can find the example usage for org.springframework.web.servlet.view.xml MarshallingView setMarshaller.

Prototype

public void setMarshaller(Marshaller marshaller) 

Source Link

Document

Set the Marshaller to be used by this view.

Usage

From source file:com.work.petclinic.view.XmlViewResolver.java

@Override
public View resolveViewName(String viewName, Locale locale) throws Exception {
    MarshallingView marshallingView = new MarshallingView();
    marshallingView.setMarshaller(marshaller);
    return marshallingView;
}