英文:
Is there a way to include a SQL/JDBC database in a Java WAR web application so users don't have to set up MySQL?
问题
我有一个Java Spring MVC网络应用程序。
要运行它,用户必须安装并配置一个MySQL数据库供其连接(用于加载配置和存储用户信息等)。
是否有一种方法可以将一个SQL数据库包含在WAR文件中,以便用户无需设置MySQL数据库即可使用?
英文:
I have a Java Spring MVC web application.
To run it, users have to install and configure a MySQL database for it to connect to (to load configuration and store user info and so on).
Is there a way to include an SQL database in the WAR file that is ready to use, so users don't have to set up the MySQL database?
答案1
得分: 1
你可以尝试按照baeldung上的指南使用SQLite。
如果您希望数据不被持久化,可以使用像SQLite、HSQLDB或H2这样的内存数据库。
英文:
You can try using SQLite by following this guide available on baeldung.
In-Memory Database like SQLite or HSQLDB or H2 should be used in case you want the data not to be persisted.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论