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?

[1759 byte] By [lrngjavaa] at [2007-11-27 9:06:09]
# 1
It's nothing to do with Eclipse, your sevlet container compiles JSPs. Refer to the docs for whatever container you're using to see where it puts them, or Google it. I can't remember where Tomcat puts compiled JSPs, sorry!Be prepared to see some pretty ugly code though :-)
georgemca at 2007-7-12 21:41:14 > top of Java-index,Java Essentials,New To Java...
# 2
>I can't remember where Tomcat puts compiled JSPsgenerally tomcat puts generated servlets under work\Catalina\localhost directory.
java_2006a at 2007-7-12 21:41:15 > top of Java-index,Java Essentials,New To Java...