[akka-user] Re: [Akka 2.4.7] + [Play 2.5] Inject Serialization Bindings Config Programmatically??

2016-10-28 Thread Guido Medina
The default bindings for Java = "java.io.Serializable", that is also why when you register: serializers.java = "com.romix.akka.serialization.kryo.KryoSerializer" you are basically covering all standard Java classes. The only thing you would need to do for your own classes is make them implement

[akka-user] Re: [Akka 2.4.7] + [Play 2.5] Inject Serialization Bindings Config Programmatically??

2016-10-28 Thread kraythe
I am wondering if this would use the same bindings for all the default JDK types or if that would be another issue. On Monday, June 13, 2016 at 3:10:01 AM UTC-5, Guido Medina wrote: > > Yes, just change the "java.io.Serializable" binding from "java" to "kryo", > I'm not at home so can't look

[akka-user] Re: [Akka 2.4.7] + [Play 2.5] Inject Serialization Bindings Config Programmatically??

2016-06-13 Thread Guido Medina
ahh, sorry, yes, you can have a static.conf, say, your static section of the config and programmatically you can build your config and include a static file as a resource, that's kind of way of mixing static conf with config objects, see Merging config trees: