I am working with play 2.0 with java about a month and there is one thing that I really cannot understand. How templates are really work? What is the best way of passing params to them?
What's the difference between
@(name: String, value: String)
and
@(name: String)(value: String)
Is this only for convenience?
I found this question which lifts the veil of secrecy, but it doesn't tell which way I should choose.