JSP랑 mysql연동해서 웹개발 공부하고있는데 아오 도대체 뭘 잘못했길래 드라이버가 자꾸 지랄일까?ㅜㅜ

<pre>No suitable driver found for jdbc:mysql://localhost:3306/wp_test 으로 시작하는 에러메세지가 계속 뜨네...DB접속이 안되는 것 같은데...</pre><pre>lib폴더에도 분명히 드라이버 파일 넣어뒀고 인터넷에서 나온 오만가지것들 다 해본 것 같은데 왜 자꾸 안되는걸까......</pre><pre>지금 개발환경은 이클립스 EE 주노에 mysql 5.1(워크밴치로 쓰고있어 워크밴치 좋더랑 ㅎㅎㅎ), 아파치 톰캣 7.0사용하고 있어..</pre>


<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8" import="java.sql.*" %>

<% request.setCharacterEncoding("UTF-8"); %>

<%
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
Connection conn = null;
Statement stmt = null;

String jdbc_url="jdbc:mysql://localhost:3306/wp_test";
conn = DriverManager.getConnection(jdbc_url, "id001","pwd001" );  // 이부분

stmt = conn.createStatement();

if(!request.getParameter("username").equals(" "))
{
        PreparedStatement pstmt = conn.prepareStatement("insert into wp_test values(?,?)");
        pstmt.setString(1,request.getParameter("username"));
        pstmt.setString(2,request.getParameter("email"));
        pstmt.executeUpdate();

}

%>    

이게 JSP코드인데 아파치 톰캣으로 돌리면 왜 자꾸 
<pre>No suitable driver found for jdbc:mysql://localhost:3306/wp_test
</pre><pre>이런 메세지로 시작하는 에러가 뜨는걸까....인터넷에서 나온 mysql용 드라이버 설치 방법이란 방법은 다 따라해 본 것 같은데.....</pre><pre>형들 도와줘......오늘도 라면이랑 담배만 빨다가 날샜어.....</pre>