Matthias Kurz

Results 1121 comments of Matthias Kurz

> The easiest way to solve this would be to rename one of the unbind method from one of the interface. Yeah, I think that would be the prefered solution....

@takapi327 If deprecation does not work, we could break compatibility here, rename all the methods (e.g. `bind` becomes `bindQuery` for QueryStringBindable and also `bindPath` for the PathBindable). We can add...

I know what's going on already. I am just figuring out if that is something we can fix in Play or not (at least for 2.9). Problem is that the...

@francisdb Even though you are not touching anything with certificates yourself probably, this fails because Play binds to both http and https ports when using `OneServerPerTestWithComponents` or `GuiceOneServerPerTest`. I am...

It's only going to be the short list of properties I choose to handle as properties for performance. I just double-checked and it's `value` and `className` and boolean attributes. Unfortunately...

Is ```java Http.Context.current().request().attrs().get(play.routing.Router.Attrs.HANDLER_DEF).path() ``` what you are looking for?

Also have a look what else you can access here: https://github.com/playframework/playframework/blob/2.6.21/framework/src/play/src/main/java/play/routing/HandlerDef.java

I just had a use case for this feature as well. Actually I also think that it would be nice if Play could provide a native api to access path...

To make this work we need to change the generated `Routes.scala` file(s) in the `target` folder so current code like this (just pseudo code): ```scala // @LINE:29 case controllers_MyController_editArticle19_route(params@_) =>...