All Downloads are FREE. Search and download functionalities are using the official Maven repository.

micromix.boot.spring.DelegatingSpringBoot.scala Maven / Gradle / Ivy

There is a newer version: 0.8
Show newest version
package micromix.boot.spring

import org.springframework.context.ApplicationContext
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.beans.factory.InitializingBean

class DelegatingSpringBoot extends SpringBootSupport with InitializingBean {

  // Members

  @Autowired
  private var currentApplicationContext: ApplicationContext = _

  // Bean life cycle

  override def afterPropertiesSet() {
    initialize()
  }

  // Overridden

  override def parentContext =
    currentApplicationContext

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy