Is it possible to have an embedded database in a web application?

Is it possible to have an embedded database in a small web application? I need that there is no need to install any database on the server machine. Just adding a jar to the folder, the database should work.

I use Java EE and Netbeans as an IDE. If possible, which open source databases can be implemented.

Any pointers to some useful lessons will be more helpful.

+3
source share
3 answers

HSQLDB , a popular embedded database, is just one jar file that you can delete in your application.

+2

SQLite . MySQL , . Firebird , .

+3

, , , . HSQLDB , , , db, . , cmd script Windows .sh script Linux.

:

H2

HSQLDB

Java DB

+1

Source: https://habr.com/ru/post/1774457/


All Articles