你写得好不明白
是jsp+mysql吧?
我就是用这个,我把我的bean 提供给你吧!
import java.sql.*;
public class ALL
{
Connection conn = null;
ResultSet rs = null;
String URL="jdbc:mysql://127.0.0.1/NEUQXSGLK";
String user="root";
String password="";
public ALL()
{
     try
     {
       Class.forName("org.gjt.mm.mysql.Driver");
       }
       catch(java.lang.ClassNotFoundException e){
       System.err.println("Class not found!"+e.getMessage());
       }
    }