I wish to write JSP which generates XML file, which has syntax, similiar to XML with EL expressions. In other words, I wish to let JSP to process only my expression
You can just put \ in front to escape the EL expression:
\
\${variable}
Alternatively, you can XML-escape the $:
$
${variable}