I am trying out the UnmappedResourceHandler
in OmniFaces, originally I had all my resources under a directory structure like:
WebContent
|-- resources
| `-- default
| `-- 1_0
| |-- css
| | `-- style.css
| |-- img
| | `-- logo.png
| `-- js
| `-- script.js
The UnmappedResourceHandler
doesn't work with the versioning, instead this works:
WebContent
|-- resources
| `-- default
| |-- css
| | `-- style.css
| |-- img
| | `-- logo.png
| `-- js
| `-- script.js
I haven't read anywhere that it doesn't work so I am wondering am I missing something?
thanks,