Eclipse、Tomcat、Mysql で開発してます。
Eclipse、Tomcat、Mysql で開発してます。
Eclipse上では意向通り動作します。
が、Tomcatサーバー起動 webapp登録、web.xml 設定では下記のエラーになります。
ご助力、ご助言をお願いします。
エラーメッセージ
The server encountered an internal error () that prevented it from fulfilling this request.
原因
javax.servlet.ServletException: java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:862)
ソースコード
<script type="text/javascript">
<!--
//【0】初期設定
function tab_clr(){
<%
if(order_no1 == 1){
Class.forName("com.mysql.jdbc.Driver");
Connection users = DriverManager.getConnection(
"jdbc:mysql://localhost/tofu_co","root","hopes");
Statement state=users.createStatement();
web.xml設定内容
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>TOFU_PRJ</display-name>
<welcome-file-list>
<welcome-file>J_in_main.jsp</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
なお、tomcatサーバーは自動起動(automatic)にしています。
補足
>JDBCドライバをtomcatのlibに置いていないか? すみません。おいてないですので試します。 >これはどこで実行した結果ですか?eclipseで実行した単体のアプリとかですか? テキストで作成したJAVAのソースをコンパイル、実行です。 JSPファイルと、テキストで作成したJAVAソースは特に相関はありません。 ドライバーがとりあえずあるかの確認の為のものです