码迷,mamicode.com
首页 > 编程语言 > 详细

扩展SpringMVC-Configuration

时间:2020-04-05 09:14:39      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:gis   add   org   override   spring   frame   vcc   pack   name   

 

 

package com.syu.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

import java.util.Locale;

//如果要扩展Springmvc 官方建议我们这样去做 : 不要添加EnableWebMvc注解
@Configuration
//@EnableWebMvc EnableWebMvc导入了一个类:DelegatingWebConfiguation,作用是从容器中获取所有的WebConfig
public class MyMvcConfig implements WebMvcConfigurer {

    //视图跳转
    @Override
    public void addViewControllers(ViewControllerRegistry registry){
        registry.addViewController("/kuang").setViewName("test");
    }


}

 

扩展SpringMVC-Configuration

标签:gis   add   org   override   spring   frame   vcc   pack   name   

原文地址:https://www.cnblogs.com/lotus-wmm/p/12635758.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!