Trying to figure out what the equivalent @Bean
configuration would be for the XML element
<mvc:view-controller path="..." />
Thanks!
Trying to figure out what the equivalent @Bean
configuration would be for the XML element
<mvc:view-controller path="..." />
Thanks!
An example of forwarding a request for "/" to a view called "home" in Java:
@Configuration
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/").setViewName("home");
}
}
And the same in XML use the element:
<mvc:view-controller path="/" view-name="home"/>
The above example was copied from the Spring reference docs