All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.biz.web.servlet.view.JSONResourceView Maven / Gradle / Ivy

There is a newer version: 3.3.x.20241003.RELEASE
Show newest version
package org.springframework.biz.web.servlet.view;

import org.springframework.http.MediaType;
import org.springframework.web.servlet.View;

/**
 * {@link View} backed by an Json resource.
 */
public class JSONResourceView extends StaticResourceView {

	public JSONResourceView(String content) {
		super(content, MediaType.APPLICATION_JSON_UTF8_VALUE);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy