java – 何时使用Akka Microkernel?

前端之家收集整理的这篇文章主要介绍了java – 何时使用Akka Microkernel?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在阅读Akka文档,我很好奇一些事情并没有得到很好的解释.他们 mention的东西叫做Akka Microkernel,并提到它的某种应用程序引导程序/启动程序,但它们并没有真正解释它是什么以及何时使用它.

稍后在文档中有一个专门用于Microkernel的entire page,但它同样神秘而模糊,说明:

The Akka Microkernel is included in the Akka download found at downloads.

然后:

To run an application with the microkernel you need to create a Bootable class that handles the startup and shutdown the application. An example is included below.

但是没有任何地方可以解释微内核是什么以及为什么我需要使用它.想法?

解决方法

根据微内核的发明者Viktor Klang的说法:

The primary use-case was to create a bundle so one can easily package an Akka Application and deploy/run it somewhere else (without having to write launcher scripts or installing some kind of App Server).

It’s a very lightweight packaging of an Akka application in a distributable archive.

This Google帖子可能会为您提供更多信息.

猜你在找的Java相关文章