「JSP入門」コンテキストパスを取得するサンプル
方法1
暗黙オブジェクトのrequestでパスを取得
<a href="<%=request.getContextPath()%>/top">top画面</a>
方法2
EL式でコンテキストパスを取得する
${pageContext.request.contextPath}
Coding Changes the World
方法1
暗黙オブジェクトのrequestでパスを取得
<a href="<%=request.getContextPath()%>/top">top画面</a>
方法2
EL式でコンテキストパスを取得する
${pageContext.request.contextPath}