krasserm / grails-jaxrs

JAX-RS Plugin for Grails
http://code.google.com/p/grails-jaxrs/
Apache License 2.0
50 stars 48 forks source link

How to get actual uri (i.e) api/v1/login/1234 instead of /grails/jaxrs.dispatch #66

Closed lakshmipmandava closed 8 years ago

lakshmipmandava commented 9 years ago

We are trying to get the actual uri in Grails filter

     testUris(uri:'/api/**') {
           before = {
                println("before ----------------"+request.getRequestURI())
               // do some preprocessing
           }
            after = {
                 println("sdafter ----------------"+request.getRequestURI())
               // do some postprocessing
             }
     } 

using above code. but its it printing /grails/jaxrs.dispatch instead of api/v1/login/1234

budjb commented 8 years ago

This issue was moved to budjb/grails-jaxrs#24