Naoki Takezoe
Naoki Takezoe
Fixes https://github.com/scalatra/scalatra/issues/800. We also need to update the documentation that has been updated in https://github.com/scalatra/scalatra-website/pull/181
In particular, use of multiple ScalatraFilters makes deep stack. It would be nice if we can composite them to a single controller and they are proceeded by loop rather than...
This is a port of reverse routing support for Scalate in the scalatra-scalate module: https://github.com/scalatra/scalatra/blob/2.7.x/scalate/src/main/scala/org/scalatra/scalate/ScalateUrlGeneratorSupport.scala First, controller must extend `TwirlReverseRouteSupport`. ```scala class MyController extends ScalatraServlet with TwirlReverseRouteSupport { val login...
With Slick 3.1.1, I got StackOverflowError for a query which has a lot of conditions. Code to reproduce easily is below: ``` scala val seq = Range(1, 500) Accounts.filter {...