why ,we are using jsp and html.which one is better?

Answers were Sorted based on User's Feedback



why ,we are using jsp and html.which one is better?..

Answer / sivasubramanian.k

JavaServer Pages (JSP) is a Java technology that allows
software developers to dynamically generate HTML, XML or
other types of documents in response to a Web client
request. The technology allows Java code and certain pre-
defined actions to be embedded into static content.

The JSP syntax adds additional XML-like tags, called JSP
actions, to be used to invoke built-in functionality.
Additionally, the technology allows for the creation of JSP
tag libraries that act as extensions to the standard HTML
or XML tags. Tag libraries provide a platform independent
way of extending the capabilities of a Web server.

JSPs are compiled into Java Servlets by a JSP compiler. A
JSP compiler may generate a servlet in Java code that is
then compiled by the Java compiler, or it may generate byte
code for the servlet directly. JSPs can also be interpreted
on-the-fly reducing the time taken to reload changes.

So JSP is better than HTML as it contains both static and
dynamic content..

Is This Answer Correct ?    10 Yes 1 No

why ,we are using jsp and html.which one is better?..

Answer / giridhar gangapatnam

jsp is used for both static and dynamic contents in web
applications. But html is only for static contents.
So, as per my knowledge jsp is better than html

Is This Answer Correct ?    8 Yes 0 No

Post New Answer

More Core Java Interview Questions

difference between String a; and String a=new String();? y do v need to assign memory to the variable?

2 Answers  


Can we override tostring method in java?

0 Answers  


Explain about member inner classes?

0 Answers  


Is char * a string?

0 Answers  


How do generics work in java?

0 Answers  






What is difference between calling start() and run() method of thread?

0 Answers  


What is the difference in between cpp and java? Can u explain in detail?

0 Answers  


Mention the default values of all the elements of an array defined as an instance variable.

0 Answers  


which class to use when concatenating strings in a loop.

3 Answers   IBM,


How we get some middle records in one table?

2 Answers   3i Infotech,


What are the data types supported by java?

0 Answers  


why java is platform independent?

5 Answers   IBM, SparkTG,


Categories