hola soy principiante en el manejo de jsp, me dejaron hacer una practica en donde tengo q insertar, eliminar y consultar pero el problema es q no se como hacer la conexion a mysql para q pueda realizar y esto es loq llevo:
principal.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Prueba</title>
</head>
<body>
<h1>Bienvenido que desea realizar</h1>
<a href=insertar.jsp><center>insertar datos</center></a>
<a href=eliminar.jsp><center>eliminar datos</center></a>
<a href=mostrar.jsp><center>mostrar datos</center></a>
</body>
</html>
insertar.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Prueba</title>
</head>
<body>
<h1>Insertar datos</h1>
Clave: <input type="text" name="clave" size=20><br><br>
Nombre: <input type="text" name="nombre" size=20><br><br>
Direccion: <input type="text" name="direccion" size=20><br><br>
Telefono: <input type="text" name="telefono" size=20><br><br>
<input type="submit" name="op" value="Guardar">
</body>
</html>
eliminar.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Prueba</title>
</head>
<body>
<h1>Eliminar datos</h1>
Introduzca la clave que desea eliminar <br><br>
Clave: <input type="text" name="clave" size=20><br><br>
<input type="submit" name="op" value="Guardar">
</body>
</html>
mostrar.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Prueba</title>
</head>
<body>
<h1>Mostar datos</h1>
// aqui se supone que me debe de mostrar los datos
</body>
</html>
solamente falta hacer la conexion no se como es por q yo nunca he hecho una conexion de la base de datos en mysql y esta es la primera vez
el nombre de la base de datos es "prueba"
el nombre de la tabla es "persona" que contiene los campos clave, nombre, direccion y telefono