ここではstrutsからpostgreSQLへの接続方法を
説明したいと思います。
まずWEB-INFに配置された[struts-config.xml]に以下の
タグを追記してください。
==================================================
説明:
DBサーバ:localhost
ユーザー名:user
パスワード:pass001
==================================================
<struts-config>
<data-sources>
<data-source
autoCommit="false"
description="Example Data Source Description"
driverClass="org.postgresql.Driver"
maxCount="4"
minCount="2"
password="pass001"
url="jdbc:postgresql://localhost/karte"
user="user"/>
</data-sources>
</struts-config>
※いつものように<>のタグを半角に戻してください。
0 件のコメント:
コメントを投稿