Hi,
I use “akka-persistence-jdbc” , refer Configuration • Akka Persistence JDBC and the configuration is
persistence {
journal.plugin = "jdbc-journal"
auto-start-journals = ["jdbc-journal"]
snapshot-store.plugin = "jdbc-snapshot-store"
auto-start-snapshot-stores = ["jdbc-snapshot-store"]
state.plugin = "jdbc-durable-state-store"
}
when I start the service , the console reports the following error :
[cxcount-akka.actor.default-dispatcher-5] ERROR akka.actor.OneForOneStrategy - Default DurableStateStore plugin is not configured, see 'reference.conf'
Before adding “state” , the service runs normally ,journal and snapshot can be added to the database.
So,excuse ,where did I configure it wrong ?