在springboot1.x的版本中,想要在请求接口时后面带上.do
或者.html
之类的后缀,直接配置
server:
servlet-path: "*.do"
就可以,但是在springboot2.x中,这个配置是默认关闭的,需要
spring:
mvc:
pathmatch:
use-suffix-pattern: true
server:
servlet:
path: "*.html"
开启配置后才会生效。
在springboot1.x的版本中,想要在请求接口时后面带上.do
或者.html
之类的后缀,直接配置
server:
servlet-path: "*.do"
就可以,但是在springboot2.x中,这个配置是默认关闭的,需要
spring:
mvc:
pathmatch:
use-suffix-pattern: true
server:
servlet:
path: "*.html"
开启配置后才会生效。
本文标题:springboot2.0设置servlet-path
本文链接:https://www.haomeiwen.com/subject/yqmgnftx.html
网友评论