先來一段**吧,看一下注釋
/** * 告訴大家乙個天大的秘密,一旦用了**配置,properties配置就不起效果了
*///@configuration
@enablewebmvc
@springbootconfiguration
public
class
springmvc
implements
webmvcconfigurer
@override
public
void
addinterceptors
(interceptorregistry registry)
}先使用properties配置,並注釋掉上面的配置,發現可以訪問
之後將注釋拿掉,還要刪掉資源配置,發現無法訪問
最後取消properties配置,改用**,可以訪問
SpringBoot建立web專案靜態資源路徑配置
spring boot檢視配置 spring.mvc.view.prefix web inf views spring.mvc.view.suffix jsp 靜態檔案訪問配置 spring.mvc.static path pattern static 但是,配置完不起作用,每次訪問能進後台cont...
springboot自定義靜態資
pringboot 靜態資源位置,classpath meta inf resources classpath resources classpath static classpath public 預設資源放在這幾個目錄下,是可以訪問的,但是專案中往往需要自己定義靜態資源載入的位置,這個時候就需要...
springboot中css js等靜態資源被攔截
springboot 2.3的版本 會攔截靜態資源。使用 時需新增excludepathpatterns讓所需靜態資源放行 我們自己的css js等靜態資源放在resources static asserts下 而從pom檔案裡面引入的jquery bootstrap放在了webjars下 所以控制...