]
Bartosz Baranowski resolved WFLY-9042.
--------------------------------------
Resolution: Cannot Reproduce
Output in current WFLY master: "x y z"
Missing spaces after EL expressions in JSP
------------------------------------------
Key: WFLY-9042
URL:
https://issues.jboss.org/browse/WFLY-9042
Project: WildFly
Issue Type: Bug
Environment: CentOS Linux 7.3.1611
Reporter: Martin Švorc
Assignee: Bartosz Baranowski
Labels: el, el-expresion, jsp
Attachments: example.zip
Spaces are missing after EL expression in the output. For example the following
{{${x} ${y} ${z}}} comes out as "xyz" (assuming the values bound to the
variables are "x", "y", "z", respectively) or {{${x} text}}
comes out as "xtext".
The behaviour is the same on WF 10 and 11. Does not occur on Tomcat 7,8.
The space is not present in the generated java class on WF and is present on Tomcat, so I
assume the problem must be in the JSP parsing.
My only lead so far is [this stackoverflow
question|https://stackoverflow.com/questions/26988262/best-way-to-find-os...]
back from '08.