Hi,

I am using Spring extension to support autowiring capabilities for my 
actors. 
Everything works well except I would like to have also possibility to 
insert properties via non default constructor, but then there is a problem 
with SpringActor producer:

@Named("SomeActor")
@Component
@Scope(value = "prototype")
public class SomeActor extends UntypedActor {


    @Autowired

    private SomeService someService


    public SomeActor(SomeReference  someReference) {

       //sth

    }



}


Is there a possibility to do it via Spring Extension ? I tried to implement own 
SpringActorProducer but without success.

Maybe it is just a bad idea to do it this way ? And all things should be passed 
via message ?

-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: 
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>>      Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to