使用 JSF 1.2/Facelets 生成纯 javascript/css 文件

发布于 2024-12-07 19:20:00 字数 250 浏览 2 评论 0原文

我需要使用 JSF 1.2/Facelets 动态生成纯 JavaScript 文件或纯 css 文件。 当我说“纯粹”时,我的意思是没有任何标记,如 xml、html 打开/关闭标记。

这可能吗?如果是这样,我需要为facelets 输出机制使用哪些设置。

为了给您提供一些历史记录,我尝试在 jsf 应用程序中使用 TinyMCE 编辑器并配置图像列表,它提供了一个文件名。该文件在客户端读取和解析,并且只需要 javascript 而没有其他内容。

I need to generate a pure JavaScript file or pure css file dynamically using JSF 1.2/Facelets.
When I mean 'pure' I mean without any markup like xml, html open/close tags.

Is this possible? If so what settings do I need to use for the facelets output mechanism.

To give you a bit of history, I am trying to use the TinyMCE editor in my jsf application and to configure the list of images, it is supplied with a file name. The file is read and parsed on the client side and need to be just javascript and nothing else.

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

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

发布评论

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

评论(1

终陌 2024-12-14 19:20:00

如果没记错的话,JSF 1.2 Facelets 强制要求生成 XHTML。我想,即使您可能不得不在 servlet Filter 中转换生成的 XML(例如使用 XSLT),技术上也可以实现您想要的操作。

在同一应用程序中使用 JSP 会容易得多:

<%@ page language="java" contentType="text/javascript; charset=ISO-8859-1"
                                                 pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="f"  uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h"  uri="http://java.sun.com/jsf/html"%>
<f:view>
   var foo = '<h:outputText value="#{bar.baz}" escape="false" />';
</f:view>

If memory serves, JSF 1.2 Facelets mandate producing XHTML. I imagine it is technically possible to do what you want even if you might have to resort to transforming the resultant XML (e.g. using XSLT) in a servlet Filter.

It would be significantly easier to do using a JSP in the same application:

<%@ page language="java" contentType="text/javascript; charset=ISO-8859-1"
                                                 pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="f"  uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h"  uri="http://java.sun.com/jsf/html"%>
<f:view>
   var foo = '<h:outputText value="#{bar.baz}" escape="false" />';
</f:view>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文