rest - How use UrlRewriteFilter to use querystring? -


i trying use urlrewritefilter, but, i'm not getting create rule can turn this:

/bookmark-edit/1 

in this:

/bookmark-edit.jsp?id=1 

examples welcome!

thanks, luciano

do mean this?

<rule>     <from>^/bookmark-edit/(.*)$</from>     <to>/bookmark-edit.jsp?id=$1</to> </rule> 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -