PrimeFaces 图表
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 Primeface 的最新稳定版本 2.2.1,请执行以下操作:
将 Primefaces jar 文件和您首选主题的 jar 文件放入项目类路径中。
将以下内容添加到您的 web.xml 中,并将
内容替换为您所选主题的名称:将以下内容添加到您的所有 Facelets
html 标签:
例如:
无需更改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:Add the following to all of your facelets
html
tags that use primefaces components:e.g:
No change in faces-config.xml needed.
If you should be using an older version of primefaces the procedure is a bit different.