Ciao a tutti, volevo una piccola spiegazione sulle servlet,premettendo che le sto imparando

Devo chiamare da una jsp un metodo di una servlet (uso JBuilder 2005),e fin qui ok.
Ma se nella servlet ho più di un metodo come posso fare a chiamare quello che mi interessa al momento?

Questa è la mia jsp (molto elementare) :

<html>
<head>
<title>
jspPrincipale
</title>
</head>
<body bgcolor="#ffffff">
<h1>
JBuilder Generated JSP
</h1>


<form action="/WebModule1/servlet1 method="post">



<input type="submit" name="Submit" value="Submit">
</form>

<input type="reset" value="Reset">

</body>
</html>


Questa è la mia servlet:


package servlet;

import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;

public class Servlet1 extends HttpServlet {
private static final String CONTENT_TYPE = "text/html";

public static String variabile;

//Initialize global variables
public void init() throws ServletException {
}

//Process the HTTP Get request
public void doGet(HttpServletRequest request, HttpServletResponse response) throws
ServletException, IOException {
response.setContentType(CONTENT_TYPE);
PrintWriter out = response.getWriter();
out.println("<html>");
out.println("<head><title>Mia Servlet</title></head>");
out.println("<body bgcolor=\"#ffffff\">");
out.println("

The servlet has received a "+ request.getMethod()+". This is the reply.</p>");
out.println("</body>");
out.println("</html>");
out.close();

System.out.println("sono in doGet");


};


public void doPost(HttpServletRequest request, HttpServletResponse response) throws
ServletException, IOException {


doGet(request, response);



};


public void mioMetodo(HttpServletRequest request, HttpServletResponse response) throws
ServletException, IOException {
System.out.println("sono in mioMetodo");

};





//Clean up resources
public void destroy() {
}
}


Ora se dalla jsp voglio chiamare uno dei 2 metodi nella servlet (cioè mioMetodo o doGet) come posso fare?
Magari inserendo un'altro bottone in modo che con bottone posso richiamare il primo metodo e
con l'altro il secondo metodo?

Grazie e ciaooo