1. spring mvc 關於url匹配html
如對於url:http://localhost:8080/mypro/user/index.htmlspring
http://localhost:8080/mypro/user/indexjson
後臺配置是:user/index,而spring的defaultservlet配置是*.htmlmvc
默認的匹配規則對於這兩個url均可以訪問到對應的 controller 方法,由於它默認開啓useRegisteredSuffixPatternMatch=true,也就是說能夠默認匹配後綴即:/user/index = /user/index.htmlurl
若是權限要求嚴格的項目 能夠關閉這個選項code
<mvc:annotation-driven> <mvc:path-matching suffix-pattern="false" /> </mvc:annotation-driven>