0
我想在Spring JSP中打印絕對URL的列表,供內部用戶從中選擇。但是,該頁面會使用當前的URL進行呈現。如何在JSP中打印絕對URL列表
例如,我要一個鏈接到www.anothersite.com,但鏈接出來爲的http://本地主機:8080/MyApp的/ www.anothersite.com在頁面上
我究竟做錯了什麼?以下兩行都有相同的結果。
<c:forEach items="${listAppURLForm}" var="nextURL">
<li>
<a href=<c:out value="${nextURL.link}"></c:out>>${nextURL.link}</a>
<a href=${nextURL.link}>${nextURL.link}</a>
</li>
</c:forEach>
您是否檢查過調試器中的URL?什麼是生成'listAppURLForm'的代碼?很有可能你的URL實際上是'http:// localhost ...' –