記錄springboot專案裡關於session的一個問題(session監聽器失效)

drawbackcc發表於2020-12-14

一開始是想寫個context和session監聽器,context監聽器初始化成功,但是session監聽器沒有反應,確定配置沒有問題,然後發現請求並沒有進入我寫的controller(requestmapping為index),這時候瀏覽器url為http://localhost:8080/springbootexer/springbootexer是我的context-path),繞過我寫的controller自動跳轉到index.html,然後這時候並沒有建立session,在`thymeleaf`裡引用#session會丟擲異常,將url寫成http://localhost:8080/springbootexer/index之後才進入controller,這時候才有session,session監聽器也初始化成功

相關文章