次のようなjspファイルがあります。
<html>
<body>
<div>location: ${pageContext.request.scheme}://${pageContext.request.serverName}:${pageContext.request.serverPort}${pageContext.request.contextPath}/</div>
<div>(should have "verdagon.net" somewhere in there)</div>
<div>Included stuff should appear below here:</div>
<jsp:include page="toinclude.html"/>
</body>
</html>
WEB-INFディレクトリにweb.xmlがない場合、正しく出力されます。
location: http://verdagon.net:80/strnowebxml/
(should have "verdagon.net" somewhere in there)
Included stuff should appear below here:
I'm included!
しかし、WEB-INFディレクトリを追加し、これだけを含む必要最低限のweb.xmlを配置すると、
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
</web-app>
そのweb.xmlが存在するだけで、次の出力が得られます。
location: ${pageContext.request.scheme}://${pageContext.request.serverName}:${pageContext.request.serverPort}${pageContext.request.contextPath}/
(should have "verdagon.net" somewhere in there)
Included stuff should appear below here:
I'm included!
問題:これらのドル記号の置き換えは発生していません。
奇妙なことに、jsp:includeが正常に実行されているため、JSPが実行されていることがわかります。
web.xmlがないときにJSPが機能し、追加すると壊れてしまう理由を知っている人はいますか?