Apparently I don't understand Play's routing as well as I thought. I was trying to get the url for a form looking the way I want, and I'm getting StackOverflowError from Groups.view's call to render caused by infinite recursion in play.data.binding.Unbinder.unBind(Unbinder.java:62).
This was all working fine when I had the default catch-all route. What I have now is:
GET /groups/{<[\d\w]+=.*>rdn} ldapauth.Groups.view
POST /groups/{<[\d\w]+=.*>rdn} ldapauth.Groups.save
Groups.view works fine until I add a reference to Groups.save:
#{form @ldapauth.Groups.save(rdn: 'cn=test')}`
#{/form}
on the view page, then I get the error above. Anybody know what the actual problem is here?