我一直在浏览Akka持久性文档。在存储插件(即日记和快照部分)中,我看到可以通过以下方式自定义这些插件...
# Path to the journal plugin to be used
akka.persistence.journal.plugin = "my-journal"
# My custom journal plugin
my-journal {
# Class name of the plugin.
class = "docs.persistence.MyJournal"
# Dispatcher for the plugin actor.
plugin-dispatcher = "akka.actor.default-dispatcher"
}
插件类如何工作?我试图在我的自定义日记帐插件类(在所有方法和某些静态块中)中放入一些打印语句,但没有一个在执行。快照插件类中发生了同样的事情。 即使某些超类正在使用此类中的重写方法,也至少应执行print语句。这是否意味着该类永远不会被访问?我怎么知道这些课程都在工作?