我想设置引导程序主题,并按照此处描述的步骤进行操作 https://www.primefaces.org/showcase/getstarted.xhtml
我使用maven并添加了存储库
<repository>
<id>prime-repo</id>
<name>PrimeFaces Maven Repository</name>
<url>http://repository.primefaces.org</url>
<layout>default</layout>
</repository>
并添加了依赖项
<dependency>
<groupId>org.primefaces.themes</groupId>
<artifactId>all-themes</artifactId>
<version>1.0.10</version>
</dependency>
我可以清楚地看到Maven依赖项中的all-themes.jar
,所以我想上面的步骤可以正常工作。之后,我将以下内容添加到web.xml
<context-param>
<param-name>primefaces.THEME</param-name>
<param-value>bootstrap</param-value>
</context-param>
不幸的是,此后没有任何变化。我仍然得到默认主题,没有任何错误(无论是在eclipse输出中还是在Web控制台中)均指示出错误。
答案 0 :(得分:0)
最后我没有找到问题。 没有任何其他指定主题。 我手动下载了jar,提取了css,将其导入ressources文件夹,并在主html中手动将其链接