I am creating a Spring Boot 4 application and I would like to include the JqueryUI notification widget found here. The problem arises because the example HTML looks like this...
<div id="container">
<div id="basic-template">
<a class="ui-notify-cross ui-notify-close" href="#">x</a>
<h1>#{title}</h1>
<p id="textArea">#{text}</p>
</div>
</div>
Of course Spring complains about the #{title}
in the jsp
/WEB-INF/jsp/main.jsp (line: 10, column: 27) #{...} is not allowed in template text
I see this is a side effect of the old JSF stuff from this question here. Is there a way around this? Is it possible to include a file in src>main>resources>static>alert.html?