Introduction To JSP
(Java Server Pages)
JSP (Java Server Pages) is a server-side technology. It is used to create dynamic web pages. Basically this is designed to develop Java web applications.
JSP technology can access the Java API (Application Program Interface), so
that Java-based web applications are made and very easy.
JSP जावा सर्वर पेज का परिचय
JSP (जावा सर्वर पेज) एक सर्वर
साइड तकनीक है। इसे गतिशील वेब पेज बनाने के लिए यूज़ किया जाता है। मूल रूप से यह
जावा वेब एप्लिकेशन विकसित करने के लिए बनाया गया है।
JSP तकनीक जावा एपीआई (एप्लिकेशन
प्रोग्राम इंटरफ़ेस) को एक्सेस कर सकती है, जिससे कि जावा आधारित वेब
एप्लिकेशन बनाते हैं और बहुत आसान हो जाते हैं।
JSP technology works entirely against Servlet Technology. Wherever you are in Servlet Technology you insert HTML script inside the java program, in JSP technology, you include the java program in HTML script.
However, a JSP page also generates Servlet as output but in JSP the
coding is much easier than the actual Servlet.
A JSP page is made up of HTML and JSP tags. With the help of JSP tags, you
use java API's. With the help of these tags, you can easily include any major
program in your webpage. In this way you can create a web application which
will be fully java based.
For example, you just design web page with HTML. If you want to add
functionality to the web page or you want to make it dynamic, you can use JSP
technology.
As you would like to create a converter, which converts binary numbers into
decimal. For this you can write the logic part in full java and with the help
of JSP you can include it in the web page. In this way you can create a java
based web application.
जेएसपी तकनीक पूरी तरह से सर्वलेट टेक्नोलॉजी के खिलाफ काम करती
है। जहाँ भी आप सर्वलेट टेक्नॉलॉजी में हैं, तो आप java प्रोग्राम के अंदर
HTML स्क्रिप्ट सम्मिलित करते हैं,
JSP तकनीक में, आप java प्रोग्राम को HTML स्क्रिप्ट में शामिल करते हैं।
हालाँकि, JSP पेज आउटपुट के रूप में सर्वलेट भी बनाता है लेकिन JSP में कोडिंग वास्तविक सर्वलेट की तुलना में बहुत आसान है।
एक JSP पेज HTML और JSP टैग्स से बना है। JSP टैग्स की मदद से आप
java API का उपयोग करते हैं। इन टैग्स
की मदद से आप अपने वेबपेज में किसी भी बड़े प्रोग्राम को आसानी से शामिल कर सकते हैं।
इस तरह आप एक वेब एप्लिकेशन बना सकते हैं जो पूरी तरह से जावा आधारित होगा।
उदाहरण के लिए, आप बस HTML के साथ वेब पेज डिज़ाइन
करते हैं। यदि आप वेब पेज में कार्यक्षमता जोड़ना चाहते हैं या आप इसे गतिशील बनाना
चाहते हैं, तो आप JSP तकनीक का उपयोग कर सकते हैं।
जैसा कि आप एक कनवर्टर बनाना चाहते हैं, जो द्विआधारी संख्याओं को दशमलव में परिवर्तित करता
है। इसके लिए आप लॉजिक पार्ट को फुल जावा में लिख सकते हैं और JSP की मदद से आप इसे वेब पेज में शामिल कर सकते हैं।
इस तरह से आप एक जावा आधारित वेब एप्लिकेशन बना सकते हैं।
0 comments:
Post a Comment