I'm working on a JSF 2.0, Spring 3.1.1 Projekt. I've an old commons-resource-jar created for Spring 3.1.1 MVC with the following structure:
commons.jar
- --- img
- --- myLogo.png
- --- css
- --- myStyle.css
- --- js
- --- myScript.js
..
- --- myScript.js
Unfortunately this is not the structure a JSF 2.0 ResourceHandler is handling this correctly. As defined by JSF 2.0 the folder Structure should be
commons.jar
- --- META-INF
- --- img
+ --- myLogo.png - --- css
...
- --- img
How can I configure my JSF 2.0 ResourceHandler so it can handle my initial folder structure from the old resource-library?
<h:outputStylesheet library name>
,<h:graphicImage library name>
, etc. – BalusC