With ColdBox 3.0.0 you can use any kind of regular expression with your SES routes which makes it extremely flexible. One way to accomplish this is by using the constraints arguments when calling the addRoute() method to add a routing entry. So if I wanted to add a placeholder that matches a regex then I would do this:
addPattern(pattern="/api/:format/", constraints={format="(xml|json)"}) As you can see from the code ab...



