answersLogoWhite

0


Best Answer

Check the link in the Related Links Section. There are details of many books related to Java & J2EE Technologies

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

1mo ago

"Head First Java" by Kathy Sierra and Bert Bates is a popular choice for learning Java. For JSP, "Core Servlets and JavaServer Pages" by Marty Hall is a comprehensive resource. Both books provide a strong foundation for Java and JSP development.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: References book for java and jsp?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the JSP atrributes?

java server pages (jsp) are used for scripting on java side with the help a server .


What is acronym of jsp?

JSP stands for Java Server Pages


What is full from JSP?

JSP stands for Java Server Pages


What does jsp mean?

jsp means Java Server Pages.


What is the Expansion for JSP?

JSP stands for Java Server Pages. They are used in Java Enterprise applications that are created to be used on web pages. The JSP page acts as the user interface for the enterprise application.


How do you connect jsp and HTML?

JSP and HTML are similar in some way or other. JSP is one which has work on Java Programming as well.


Is it necessary to learn advanced java for JSP?

It is a good to know item. It is not mandatory or necessary. Basic knowledge of core Java is enough to learn JSP and Servlets.


What is JSP?

In the context of Computer Programming, JSP stands for Java Server Page. A JSP is basically an HTML file with Java code inserted to make a dynamic page.AnswerJacketed soft point in the context of bullets. AnswerJSP, Java Server Pages, is a language for mixing HTML/XML and Java in the same page. Basic JSP can look like this:...Welcome, ...where tells the server to execute the contents of the tag as Java and print the result to the page.See related link.


What is the anatomy of a jsp page?

A JSP File Contents:A JSP file can contain the following:a. HTML contentsb. JavaScriptc. Java CodeCombining the features of the above 3 mentioned items; we get a powerful entity called the JSP. JSPs are used for the User Interface layer or the more colloquially called Front End layer of any J2EE application.JSP SkeletonBelow is how a Skeleton JSP File would look like. (The file has to be saved as .jsp)// Page Imports


How do we find a jsp version in Java?

first you have to find out what version of j2ee you are using then from there you can lookup the jsp version for that version of j2ee


What is the difference between requestgetattribute and requestgetParameter in JSP?

request.getAttribute() is used on the Server side Java code to get values submitted from the form onto the Servlet or other java classes request.getParameter() is used on the JSP page to get values sent by the servlet and display it in the jsp page


Why jsp in j2ee?

JSP stands for Java Server Pages. JSP is an integral part of any j2ee application. It handles the User Interface (UI) layer of any web based application. It has support to execute java code and also can use HTML and java script. The output of a JSP page is usually viewed in a web browser like Internet Explorer or Mozilla Firefox etc.