Add SQLite persistence to restore and continue previous conversations

This commit is contained in:
2025-06-29 12:03:11 +02:00
parent a150ce37f8
commit 73f3ade0f0
13 changed files with 197 additions and 45 deletions

17
pom.xml
View File

@@ -42,6 +42,23 @@
<version>4.2.0</version>
</dependency>
<!-- Database -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.45.1.0</version>
</dependency>
<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-community-dialects</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<!-- Test support -->
<dependency>
<groupId>org.springframework.boot</groupId>