thymeleaf 獲取專案路徑

2022-03-05 12:36:06 字數 696 閱讀 4985

<

p th:text

=$>

p>

<

a th:href

="$ "

>

a>

效果圖如下:

插入一段本地不需要加上專案名稱,在正式環境下伺服器下需要加上專案名稱的判斷,免得本地和伺服器上都改來改去,有時候忘記改了,就gg了:

<

a class

="item"

th:each

="taopiao,u : $"

th:if

="$ ne 8080"

th:href

="'/fastbuytickets/purchase?id='+$"

>

伺服器調測

a>

<

a class

="item"

th:each

="taopiao,u : $"

th:if

="$ eq 8080"

th:href

="'/purchasetest?id='+$"

>

本地調測

a>

自己當筆記用,不給壞人用

獲取專案所在路徑

取到 http localhost 8080 myproject string basepath request.getscheme request.getservername request.getserverport request.getcontextpath string relativel...

C 獲取專案路徑

code string str1 process.getcurrentprocess mainmodule.filename 可獲得當前執行的exe的檔名。string str2 environment.currentdirectory 獲取和設定當前目錄 即該程序從中啟動的目錄 的完全限定路徑。備...

Python 獲取檔案路徑 專案路徑

tz zs file 在ide中獲取的是絕對路徑,在終端啟動時,啟動位置是本模組,則為相對路徑,由外部模組呼叫則獲取的是未經解析的絕對路徑。sys.path 0 忠實的表示啟動的檔案所在的路徑 os.getcwd 獲取的是工作空間的路徑。ide中可以設定working directory,終端啟動時...