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

io.atlasmap.standalone.RoutingConfiguration Maven / Gradle / Ivy

package io.atlasmap.standalone;

import org.springframework.stereotype.Component;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

@Component
public class RoutingConfiguration extends WebMvcConfigurerAdapter {

    public void addViewControllers(final ViewControllerRegistry registry){
        super.addViewControllers(registry);
        registry.addViewController("/mapping-id/*").setViewName("forward:/");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy