Skip to content

Commit ab7f63f

Browse files
committed
Upated Scala, Spring, Spring Boot versions; Fixed lifecycle phase initialization order bug
1 parent 68bb89b commit ab7f63f

File tree

3 files changed

+25
-16
lines changed

3 files changed

+25
-16
lines changed

build.sbt

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
import sbt.Keys._
22

33
// Common dependency versions
4-
val akkaVersion = "2.3.11"
5-
val springVersion = "4.1.6.RELEASE"
6-
val springBootVersion = "1.2.4.RELEASE"
4+
val akkaVersion = "2.4.2"
5+
val springVersion = "4.2.5.RELEASE"
6+
val springBootVersion = "1.3.3.RELEASE"
77

88
lazy val `akka-spring-boot` = (project in file(".")).
99
settings(net.virtualvoid.sbt.graph.Plugin.graphSettings: _*).
1010
settings(
1111
organization := "com.github.scalaspring",
1212
name := "akka-spring-boot",
1313
description := "Scala-based integration of Akka with Spring Boot.\nTwo-way Akka<->Spring configuration bindings and convention over configuration with sensible automatic defaults get your project running quickly.",
14-
scalaVersion := "2.11.6",
15-
crossScalaVersions := Seq("2.10.5"),
14+
scalaVersion := "2.11.8",
15+
crossScalaVersions := Seq("2.10.6"),
1616
javacOptions := Seq("-source", "1.7", "-target", "1.7"),
1717
scalacOptions ++= Seq("-feature", "-deprecation"),
1818
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
@@ -32,8 +32,8 @@ lazy val `akka-spring-boot` = (project in file(".")).
3232
).map { _ % "runtime" },
3333
// Test dependencies
3434
libraryDependencies ++= Seq(
35-
"org.scalatest" %% "scalatest" % "2.2.4",
36-
"com.github.scalaspring" %% "scalatest-spring" % "0.2.1",
35+
"org.scalatest" %% "scalatest" % "2.2.6",
36+
"com.github.scalaspring" %% "scalatest-spring" % "0.3.1-SNAPSHOT",
3737
"org.springframework" % "spring-test" % springVersion,
3838
"com.typesafe.akka" %% "akka-testkit" % akkaVersion
3939
).map { _ % "test" },

src/main/scala/com/github/scalaspring/akka/ActorSystemLifecycle.scala

+17-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.github.scalaspring.akka
22

33
import akka.actor.ActorSystem
4+
import org.springframework.beans.factory.annotation.Value
45
import org.springframework.context.SmartLifecycle
56

67

@@ -10,25 +11,33 @@ object ActorSystemLifecycle {
1011

1112
/**
1213
* Shuts down the actor system when the application context is stopped.
14+
*
15+
* The lifecycle phase (default -10) can be adjusted by setting the akka.actorSystem.lifecycle.phase configuration
16+
* property. Note that the phase MUST be less than any beans that depend on the actor system to ensure that the
17+
* actor system is shut down after any dependent beans.
1318
*/
1419
class ActorSystemLifecycle(actorSystem: ActorSystem) extends SmartLifecycle with SpringLogging {
1520

1621
override def isAutoStartup: Boolean = true
1722

18-
override def getPhase: Int = 0
23+
@Value("${akka.actorSystem.lifecycle.phase:-10}")
24+
protected val phase: Int = -10
25+
override def getPhase: Int = phase
1926

20-
override def isRunning: Boolean = !actorSystem.isTerminated
27+
override def isRunning: Boolean = !actorSystem.whenTerminated.isCompleted
2128

2229
// Do nothing since the actor system is already started once created
23-
override def start(): Unit = { log.info(s"Starting actor system ${actorSystem.name}")}
30+
override def start() = {}
2431

2532
override def stop(callback: Runnable): Unit = {
26-
if (!actorSystem.isTerminated) {
27-
log.info(s"Shutting down actor system ${actorSystem.name}")
28-
actorSystem.registerOnTermination({ log.info(s"Shut down complete for actor system ${actorSystem.name}"); callback.run })
29-
actorSystem.shutdown()
30-
} else {
33+
if (actorSystem.whenTerminated.isCompleted) {
3134
log.warn(s"Actor system ${actorSystem.name} already terminated")
35+
callback.run()
36+
} else {
37+
log.info(s"Terminating actor system ${actorSystem.name}")
38+
actorSystem.registerOnTermination(callback)
39+
actorSystem.registerOnTermination { log.info(s"Actor system ${actorSystem.name} terminated") }
40+
actorSystem.terminate()
3241
}
3342
}
3443

version.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version := "0.2.2-SNAPSHOT"
1+
version := "0.3.1-SNAPSHOT"

0 commit comments

Comments
 (0)