wso2/jaggery

Mapping dirctories to web path with some explicit mappings.

Opened this issue · 0 comments

make URL mappings like following work properly

{
            "url": "/",
            "path": "/controllers/index.jag"
        },
        {
            "url": "/*",
            "path": "/controllers/*"
}

this works fine when there is only the latter mapping. But when both mappings are there, the first mapping overrides the second mapping even when first mapping is not matched.