Created
February 17, 2015 07:41
-
-
Save zeroows/7da2264f98812c5b6bcd to your computer and use it in GitHub Desktop.
Setting up Akka in spring JavaConfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* To support Akka | |
* | |
* @return | |
*/ | |
@Configuration | |
protected static class AkkaConfiguration { | |
// The application context is needed to initialize the Akka Spring | |
// Extension | |
@Autowired | |
private ApplicationContext applicationContext; | |
@Autowired | |
private SpringExtension springExtension; | |
/** | |
* Actor system singleton for this application. | |
*/ | |
@Bean | |
public ActorSystem actorSystem() { | |
ActorSystem system = ActorSystem.create("AkkaTaskProcessing", akkaConfiguration()); | |
// Initialize the application context in the Akka Spring Extension | |
springExtension.initialize(applicationContext); | |
return system; | |
} | |
/** | |
* Read configuration from application.conf file | |
*/ | |
@Bean | |
public Config akkaConfiguration() { | |
return ConfigFactory.load("akka"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Files related:
https://gist.github.com/zeroows/ef200055e5d281393f6b
https://gist.github.com/zeroows/c38da313121c3843892d