I am using PrimeFaces 3.1 in my project. I am facing a problem while applying a theme. I added the dark-hive-1.0.3.jar project to the project and configured it in web.xml
as follows.
<context-param> <param-name>primefaces.THEME</param-name> <param-value>dark-hive</param-value> </context-param>
When I run the project, the following exception is thrown.
javax.faces.FacesException: error loading theme, cannot find resource "theme.css" of the library "primefaces-dark-hive"
How does this problem arise and how to solve it?
Ammar source share