From what I gather Tapestry 5.4 still does not support parameterized service
injection? E.g. in the following example both s1 and s2 will map to the same DI
key of the bare class:
@Inject
private MyService s1;
@Inject
private MyService s2;
I am running Tapestry on a Bootique.io stack w
Figured it out. You can invoke the conduit_set_[fieldname] method using
reflection (declared, not regular) and this will reflect the value in the
PerthreadMap. This function takes a singular argument with the type of the
field.
Cheers
On Mon, Dec 12, 2016 at 5:45 PM, David Diaz wrote:
> Hi all,