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

com.github.developframework.kite.boot.KiteWebMvcConfigurer Maven / Gradle / Ivy

package com.github.developframework.kite.boot;

import com.github.developframework.kite.spring.mvc.DataModelReturnValueHandler;
import com.github.developframework.kite.spring.mvc.KiteResponseReturnValueHandler;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.method.support.HandlerMethodReturnValueHandler;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

import java.util.List;

@Configuration
public class KiteWebMvcConfigurer extends WebMvcConfigurerAdapter {

	@Autowired
	private DataModelReturnValueHandler dataModelReturnValueHandler;

	@Autowired
	private KiteResponseReturnValueHandler kiteResponseReturnValueHandler;

	@Override
	public void addReturnValueHandlers(List returnValueHandlers) {
		returnValueHandlers.add(kiteResponseReturnValueHandler);
		returnValueHandlers.add(dataModelReturnValueHandler);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy