How would one route the following path in Jetty ?
/users/user_id/transactions/transaction_id
I tried it this way:
/users/*/transactions/*
But I'm getting an error stating below :
java.lang.IllegalArgumentException: Servlet Spec 12.2 violation: glob '*' can only exist at end of prefix based matches: bad spec
"/users/*/transactions"
What is the solution to this ?
