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

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

Introduction

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

Prototype

public MarshallingView() 

Source Link

Document

Construct a new MarshallingView with no Marshaller set.

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;
}