問:我正在嘗試在Spring Boot 應用程式中以程式設定上下文根,但它沒有附加到請求映射。我缺什麼?
答:您正在嘗試建立自訂解決方案,但 Spring Boot 已經支援此功能。在src/main/resources 中建立application.properties 檔案並新增以下屬性:
server.contextPath=/mainstay server.port=12378
對於Spring Boot 2.0:
server.servlet.context-path=/mainstay
以上是如何在 Spring Boot 應用程式中設定上下文路徑?的詳細內容。更多資訊請關注PHP中文網其他相關文章!