eclipse question if you can answer
Just curious. where can i find the generated servlet code in eclipse? Like i have a j2ee project in eclipse name JSPEXAMPLE and then i have a jsp page which is in JSPEXAMPLE/WebContent/WEB-INF. i have this jsp code.
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ pageimport ="java.util.Calendar" %>
<!DOCTYPE html PUBLIC"-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
The server time is now
<%
Calendar now =Calendar.getInstance();
int hour = now.get(Calendar.HOUR_OF_DAY);
int minute = now.get(Calendar.MINUTE);
if(hour<10)
out.println("0" + hour);
else
out.println(hour);
out.println(":");
if(minute<0)
out.println("0" + minute);
else
out.println(minute);
%>
</body>
</html>
I would like to see my generated servlet. i can't find it anywhere. Any ideas?

