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