Spring Bean Configuration equivalent to

2020-06-08 06:48发布

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

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

Thanks!

标签: spring-mvc
1条回答
何必那么认真
2楼-- · 2020-06-08 07:20

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

查看更多
登录 后发表回答