docs: update event sourcing

This commit is contained in:
Ilkka Seppälä
2024-05-25 22:46:05 +03:00
parent 865d98cbec
commit 74f039f1cd
2 changed files with 91 additions and 23 deletions
@@ -49,8 +49,6 @@ import lombok.extern.slf4j.Slf4j;
* After the shut-down, system state is recovered by re-creating the past events from event
* journals. Then state is printed so a user can view the last state is same with the state before a
* system shut-down.
*
* <p>Created by Serdar Hamzaogullari on 06.08.2017.
*/
@Slf4j
public class App {
@@ -112,6 +110,4 @@ public class App {
LOGGER.info(AccountAggregate.getAccount(ACCOUNT_OF_DAENERYS).toString());
LOGGER.info(AccountAggregate.getAccount(ACCOUNT_OF_JON).toString());
}
}