ログ日記

作業ログと日記とメモ

2011-08-22から1日間の記事一覧

LiftでWebアプリ(3): データベースの設定

本番用・開発用のデータベースを設定する。 Debian squeeze 標準の PostgreSQL 8.4 を使う。 aptititude install postgresql pom.xml を編集。 <dependency> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId> <version>8.4-702.jdbc4</version> </dependency> データベースを作成。 createuser scala-cart -P createdb -O scala-car…