user3297289
user3297289

Reputation:

how to find Jsp (.java)file in eclipse

I am creating a simple jsp file,

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1" %> 
<!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> 
<center>
 <font color="gray" size="7"> Hello World! </font>
 </center>
 </body>
 </html>

but I tried manually compile the jsp and depoly in server,but i am unable to see the jsp (.java) file. How can i find the jsp compiler generated (.java)file in manually and ide's. I can i see the server generated file.In manual process where can i see that file ...please solve this problem.

Upvotes: 0

Views: 789

Answers (1)

user3541324
user3541324

Reputation:

This .java file is internally created the server.

if you want more about this please go through the Java Server Pages documentation.its clearly given how this Java Server Pages works.

Upvotes: 1

Related Questions