From 55cc6291b0c1d22c2d74b3eaa631116f0fa3c65a Mon Sep 17 00:00:00 2001 From: Theo Reichert <38770238+TR0N-ZEN@users.noreply.github.com> Date: Sun, 12 Nov 2023 16:51:46 +0100 Subject: [PATCH] Update src/main/asciidoc/developer_documentation.adoc Co-authored-by: Simon Bruder --- src/main/asciidoc/developer_documentation.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/asciidoc/developer_documentation.adoc b/src/main/asciidoc/developer_documentation.adoc index c25df98..4932303 100644 --- a/src/main/asciidoc/developer_documentation.adoc +++ b/src/main/asciidoc/developer_documentation.adoc @@ -172,10 +172,10 @@ image:models/design/clientServer.svg[] ==== Persistence The application uses *Hibernate annotation based mapping* to map Java classes to database tables. As a database, *H2* is used. -The persistence is deactivated by default. To activate persistence storage, the following two lines in the file _application.properties_ have to be uncommented: +The persistence is deactivated by default. To activate persistence storage, the following two lines in the file _application.properties_ have to be added: .... -# spring.datasource.url=jdbc:h2:./db/videoshop -# spring.jpa.hibernate.ddl-auto=update +spring.datasource.url=jdbc:h2:./db/catering +spring.jpa.hibernate.ddl-auto=update .... ==== User interface