Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Javaで一時的な文字列値に割り当てることができるように、現在のjspファイルの文字列値を取得できるようにしたいと考えています。
そのようです:
String pageName = "*myCurrentJSPPage.jsp*"
ファイルパス全体は必要ありません。
助けてください。
これを試して
<% String currentjspName = this.getClass().getSimpleName(); System.out.println("*** currentjspName :"+currentjspName); %>