データベース対応のJSPを既存のTomcat5.5アプリケーション(GeoServer 2.0.0が役立つ場合)に追加しようとしています。
アプリ自体はPostgresと問題なく通信するので、データベースが稼働していて、ユーザーがデータベースにアクセスできることはわかっています。私がやろうとしているのは、追加したJSPのデータベースクエリです。私はTomcatデータソースの例の設定例をほとんど箱から出して使用しました。必要なtaglibは適切な場所にあります。taglibrefがあればエラーは発生しないため、これらのJARが検出されます。postgresjdbcドライバーpostgresql-8.4.701.jdbc3.jarは$ CATALINA_HOME / common / libにあります。
これがJSPのトップです:
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<sql:query var="rs" dataSource="jdbc/mmas">
select current_validstart as ValidTime from runoff_forecast_valid_time
</sql:query>
内側の$ CATALINA_HOME / confに/ server.xmlをから関連セクション、<Host>
内で順番にあります<Engine>
。
<Context path="/gs2" allowLinking="true">
<Resource name="jdbc/mmas" type="javax.sql.Datasource"
auth="Container" driverClassName="org.postgresql.Driver"
maxActive="100" maxIdle="30" maxWait="10000"
username="mmas" password="very_secure_yess_precious!"
url="jdbc:postgresql//localhost:5432/mmas" />
</Context>
これらの行は、webapps / gs2 / WEB-INF /web.xmlのタグの最後です。
<resource-ref>
<description>
The database resource for the MMAS PostGIS database
</description>
<res-ref-name>
jdbc/mmas
</res-ref-name>
<res-type>
javax.sql.DataSource
</res-type>
<res-auth>
Container
</res-auth>
</resource-ref>
最後に、例外:
exception
org.apache.jasper.JasperException: Unable to get connection, DataSource invalid: "java.sql.SQLException: No suitable driver"
[...wads of ensuing goo elided]