單詞搜素 python
阿新 • • 發佈:2021-07-13
自動配置原理
在引擎蓋下,自動配置是使用標準
通常,自動配置類使用
擴充套件檢視解析器
package com.kuang.controller; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.View; import org.springframework.web.servlet.ViewResolver; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; import java.util.Locale; //如果你想diy一些定製化的功能,只要寫這個元件,然後將它交給springboot接管,springboot就會幫我們自動裝配 //如果你想保持配置,並且想新增配置需要用到MVC configuration //擴充套件SpringMvc 走dispatchservlet @Configuration @EnableWebMvc public class MyMvcConfig implements WebMvcConfigurer { //ViewResolver 實現了試圖解析器介面類,我們可以把它看成試圖解析器 @Bean public ViewResolver myViewResolver(){ return new MyViewResolver(); } //自定義一個自己的試圖解析器靜態內部類 public static class MyViewResolver implements ViewResolver{ @Override public View resolveViewName(String s, Locale locale) throws Exception { return null; } } }
//如果我們要拓展springmvc,官方建議我們新增@Configuration註解 @Configuration @EnableWebMvc //這個註解就是匯入一個類:DelegationWebMvcConfiguration:從容器中獲取所有的WebMvcConfig public class MyMvcConfig implements WebMvcConfigurer { //試圖跳轉 @Override public void addViewControllers(ViewControllerRegistry registry) { registry.addViewController("/kuang").setViewName("test"); } }