Springboot配置suffix指定mvc視圖的後綴方法
Springboot配置suffix指定mvc視圖後綴
如下所示:
spring: #配置MVC視圖後綴 mvc: view: suffix: ".html"
配置指定後綴之後
訪問welcome.html頁面時隻需要寫“welcome”即可。
@Controller public class demoController { @GetMapping("/a") public String demo(){ return "welcome"; }
運行結果:
SpringBoot配置MVC-controller請求的後綴名
1.啟動類添加配置
package com.ias.oil.client.schedule; import com.ias.oil.model.OILService; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.web.servlet.ServletRegistrationBean; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; import org.springframework.cloud.netflix.feign.EnableFeignClients; import org.springframework.context.annotation.Bean; import org.springframework.web.servlet.DispatcherServlet; @EnableDiscoveryClient @EnableFeignClients({OILService.PACKAGE_FOR_SERVICE_SCHEDULE}) @SpringBootApplication public class OILScheduleClientApplication { public static void main(String[] args) { SpringApplication.run(OILScheduleClientApplication.class, args); } /** * 設置匹配.action後綴的請求 * @param dispatcherServlet * @return */ @Bean public ServletRegistrationBean servletRegistrationBean(DispatcherServlet dispatcherServlet) { ServletRegistrationBean bean = new ServletRegistrationBean(dispatcherServlet); bean.addUrlMappings("*.action"); return bean; } }
需要添加上面代碼片段的此部分
/** * 設置匹配.action後綴的請求 * @param dispatcherServlet * @return */ @Bean public ServletRegistrationBean servletRegistrationBean(DispatcherServlet dispatcherServlet) { ServletRegistrationBean bean = new ServletRegistrationBean(dispatcherServlet); bean.addUrlMappings("*.action"); return bean; }
2.配置文件中添加配置
spring: mvc: ##設置匹配.action後綴的請求的配置 pathmatch: use-suffix-pattern: false use-registered-suffix-pattern: true contentnegotiation: favor-path-extension: false
~~~~~完活
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- Springboot自動裝配之註入DispatcherServlet的實現方法
- SpringBoot中使用Servlet的兩種方式小結
- SpringBoot整合Ureport2報表及常見使用方法
- springBoot 項目排除數據庫啟動方式
- SpringMVC的詳細架構你瞭解嘛