Java – how do I set a URL that contains the thymeleaf & symbol?

I have something similar:

Locale defaultLocale = Locale.getDefault();
final Context ctx = new Context(defaultLocale);
String url = getHost() + "/page?someId=" + some.getId() + "&someParam=" + Boolean.TRUE;
ctx.setVariable("url",url);

final String htmlContent = templateEngine.process("theHtmlPage",ctx);

However, when I view the generated HTML to print the web address, it displays & amp; instead of & amp; In the URL

Any suggestions?

I tried to use backquotes to avoid & symbols in Java code, but it was just printed I looked around, but I couldn't find the relevant content Also tried &

Update: OK, this won't break the link, but without it, spring doesn't seem to resolve the parameter "someparam" to true

Render label:

<span th:utext="${url}"></span>

Output:

<span>http://localhost:8080/page?someId=1&amp;someParam=true</span>

Solution

Thymeleaf had a recent issue with encoding escapes Repair in 4

The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>