在LiftWeb下配置PostgreSQL数据库

前端之家收集整理的这篇文章主要介绍了在LiftWeb下配置PostgreSQL数据库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

第一步:在pom.xml文件下的<dependencies></dependencies>处加入如下代码
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>8.3-603.jdbc3</version>
</dependency>

第二步:自定义数据库联接函数(单例对像)

在Boot类是加入如下代码

1、 object DBVendor extends ConnectionManager {

def newConnection(name: ConnectionIdentifier) = {
try {
Class.forName("org.postgresql.Driver")
val dm = DriverManager.getConnection("jdbc:postgresql ://localhost/zhaodao-lift","postgres","000000")
Full(dm)
} catch {
case e : Exception => e.printStackTrace; Empty
}
}

def releaseConnection(conn: Connection) {conn.close}

}

2、在def boot函数中加入如下代码

DB.defineConnectionManager(DefaultConnectionIdentifier,DBVendor)

这样在lift-web下配置postgresql数据就已经完成了

参考网站

http://wiki.liftweb.net/index.PHP/How_to_configure_lift_with_Postgresql

原文链接:https://www.f2er.com/postgresql/197148.html

猜你在找的Postgre SQL相关文章