Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Won't Fix
-
Affects Version/s: 1.2.1
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
-
Environment:Windows 7 (x64)
Description
In the attached project ("test_filter"), the filter below is defined in /test_filter/grails-app/conf/SecurityFilters.groovy
class SecurityFilters {
def filters = {
all(uri:"/**") {
before = {
log.info("##In security filter")
}
}
}
}
1) This does not execute on a call to: /test_filter/index.gsp
2) This does execute on a call to: /test_filter/
Disclaimer: I am new to Filters, but from the docs at: http://grails.org/doc/latest/guide/single.html#6.6 Filters I would expect this to work. Specifically, the example below lists the same filter:
allURIs(uri:'/**') {
}
Attachments
Issue Links
| This issue is related to: | ||||
| GRAILS-5639 | Grails filters are not executed anymore when requesting the root (/) |
|
|
|
This may be related to: http://jira.codehaus.org/browse/GRAILS-5639
As always, many thanks to the dev team for an excellent product and diligent follow-up to bug reports like this one.