如何连接lift和MySQL?

发布于 2024-10-20 06:01:41 字数 49 浏览 1 评论 0原文

我想创建一个简单的 lift Web 应用程序,它通过表单读取输入并将其插入数据库。

I want to create a simple lift web application which read input throug form and insert it into database.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那伤。 2024-10-27 06:01:41

您需要将 mysql jdbc 驱动程序添加到您的项目中(作为 Maven 工件,或者通过 sbt,或者只是将 jar 放入 CLASSPATH)并编辑属性文件(props/default.props):

db.driver=com.mysql.jdbc.Driver
db.url=jdbc:mysql://localhost/your_db_name
db.user=user
db.password=password

此外,您可以在应用程序容器中设置数据库上下文( Tomcat 等)代替。之后就可以使用Lift的ORM(Mapper)了。

You need to add mysql jdbc driver to your project (as a maven artifact, or via sbt, or just put jar in CLASSPATH) and edit properties file (props/default.props):

db.driver=com.mysql.jdbc.Driver
db.url=jdbc:mysql://localhost/your_db_name
db.user=user
db.password=password

Also, you can setup db context in app container (Tomcat, etc.) instead. After that you can use Lift's ORM (Mapper).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文