]
Tomaz Cerar resolved WFLY-6044.
-------------------------------
Resolution: Done
Relative path names in jsp includes do not resolve properly
-----------------------------------------------------------
Key: WFLY-6044
URL:
https://issues.jboss.org/browse/WFLY-6044
Project: WildFly
Issue Type: Bug
Components: Web (Undertow)
Affects Versions: 10.0.0.CR5
Reporter: Tomaz Cerar
Assignee: Tomaz Cerar
Priority: Blocker
Fix For: 10.0.0.Final
Hi, I have noticed that jsp:include behaves differently in EAP 7.0.0.ER2 than in WildFly
10.0.0.CR4.
To reproduce this, use kitchensink-jsp quickstart (1) and in index.jsp replace
{code}
<%@ include file="registrationForm.jsp"%>
{code}
with
{code}
<jsp:include page="./registrationForm.jsp"/>
{code}
With this modification the quickstart no longer works on EAP 7.0.0.ER2 but it still works
on WildFly 10.0.0.CR4 and EAP 7.0.0.Alpha.
(1)
https://github.com/trepel/jboss-eap-quickstarts/tree/7.0.x-develop/kitche...