answersLogoWhite

0

How do we find a jsp version in Java?

Updated: 8/16/2019
User Avatar

Wiki User

16y ago

Best Answer

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

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do we find a jsp version in Java?
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 explanation for the importance of Java Struts?

Java is a platform independent language and is widely used. In java JSP-SERVLET architecture creates over head of response and request object. So to simplify it ,a framework called struts was introduced.Like .net struts is also a framework which is advance version of jsp-servlet archite cture . Struts framework provides functionalities like to include struts tags, jquery.


References book for java and jsp?

"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.


What is the new version of java software development kit?

You can find a link to the latest Java SE version below.


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