Spring Bean Configuration equivalent to

2020-06-08 06:38发布

问题:

Trying to figure out what the equivalent @Bean configuration would be for the XML element

<mvc:view-controller path="..." />

Thanks!

回答1:

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



标签: spring-mvc