是否有标准的 JSF 方式或开源库允许输出转义文本但_with_ html 格式?

发布于 2024-10-11 09:23:07 字数 632 浏览 4 评论 0原文

我们的用例是,我们需要输出数据库中静态文本和动态值组合的文本,使用具有特定于语言的静态文本块的消息属性来解析全文。

我们需要对输出文本进行转义以防止 XSS 攻击。

但是,我们还需要对完整字符串应用格式,例如:

Hello {username}!

这当然是伪语法,{username} 是一个要替换为真实用户名的变量,其他文本是静态的并在消息属性中定义(例如:"Helloy {0}!")。

普通的 JSF 输出文本将不起作用,因为它要么转义所有内容,要么什么也不转义,从而破坏我们的格式。

请注意,我们无法从这些片段中创建“真正的”JSF 组件,因为变量字段的位置和顺序取决于语言(例如,德语和英语的词序不同)。

Seam 有一个名为 formattedText 处理这个问题并有一个优雅的解决方案。然而,我们不(也不能)在我们的应用程序中使用 Seam。

有类似的方法/库吗?

We have the use case that we need to output text that is a combination of static text and dynamic values from the database, the full text is resolved using message properties with language specific static text blocks.

We need to escape the output text to prevent XSS attacks.

However we also need to apply formatting to the full string, for example:

Hello <b>{username}</b>!

This is a pseudo syntax of course, {username} is a variable to be replaced with the real username, the other text is static and defined in a message property (e.g.: "Helloy <b>{0}</b>!").

A normal JSF outputText won't work since it will either escape everything or nothing, thus destroying our formatting.

Note that we can't make a "real" JSF component out of these fragments either since the position and ordering of the variable fields is language dependent (different word order in German vs English for example).

Seam has this component called formattedText that deals with this and has an elegant solution. However we don't (and can't) use Seam in our app.

Are there any similar approaches/libraries?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过潦 2024-10-18 09:23:07

只需应用 JSTL fn:escapeXml 输出参数。

<h:outputFormat value="#{text['generic.welcome']}" escape="false">
    <f:param value="#{fn:escapeXml(user.name)}" />
</h:outputFormat>

Just apply JSTL fn:escapeXml on output parameter.

<h:outputFormat value="#{text['generic.welcome']}" escape="false">
    <f:param value="#{fn:escapeXml(user.name)}" />
</h:outputFormat>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文