PrimeFaces 图表

发布于 2024-11-16 14:18:02 字数 109 浏览 6 评论 0原文

我是 JSF primefaces 的新手。

我想知道如何为饼图配置 web.xml 和 faces-config.xml。任何带有这 2 个 xml 文件的示例代码对我来说也非常有帮助。

I am newbie to JSF primefaces.

I want to know how to configure web.xml and faces-config.xml for pie charts. Any sample code with these 2 xml files will also be very helpful for me.

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

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

发布评论

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

评论(1

孤檠 2024-11-23 14:18:02

如果您使用的是 Primeface 的最新稳定版本 2.2.1,请执行以下操作:

将 Primefaces jar 文件和您首选主题的 jar 文件放入项目类路径中。

将以下内容添加到您的 web.xml 中,并将 内容替换为您所选主题的名称:

<context-param>
    <param-name>primefaces.THEME</param-name>
    <param-value>cupertino</param-value>
</context-param>

将以下内容添加到您的所有 Faceletshtml 标签:

xmlns:p="http://primefaces.prime.com.tr/ui"

例如:

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:p="http://primefaces.prime.com.tr/ui">

无需更改faces-config.xml。

如果您应该使用旧版本的 primefaces,则过程会有所不同。

If you are on Primeface's latest stable release 2.2.1 do the following:

Put Primefaces jar file and the jar file of your preferred theme in your project classpath.

Add the following to your web.xml and replace the <param-value> content with the name of your selected theme:

<context-param>
    <param-name>primefaces.THEME</param-name>
    <param-value>cupertino</param-value>
</context-param>

Add the following to all of your facelets html tags that use primefaces components:

xmlns:p="http://primefaces.prime.com.tr/ui"

e.g:

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:p="http://primefaces.prime.com.tr/ui">

No change in faces-config.xml needed.

If you should be using an older version of primefaces the procedure is a bit different.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文