Java Server Pages Standard Tag Library(JSTL)

Java Server Pages (JSP) technology developer को dynamic web page बनाने की अनुमति देती है। हालांकि शक्तिशाली, JSP Pages के भीतर सीधे Java Code embed करने से Code messy और बनाए रखने में difficult हो सकता है। यहीं पर Java Server Pages Standard Tag Library (JSTL) काम आती है। JSTL pre-defined tag का एक set […]

Continue reading

Important Tips of Type casting in Java

Java में Type Casting एक data type से दूसरे data type में variables को बदलने की process है। यह तब आवश्यक होता है जब आप different data type के बीच perform करना चाहते हैं या जब आपको एक type के value को दूसरे type के variables में store करने की आवश्यकता होती है। Types of […]

Continue reading

Some Important Points of JAVA SWING

Java Swing एक GUI (Graphic User Interface) toolkit है जिसका use Java में window-based application बनाने के लिए किया जाता है। यह Java foundation classes (JFC) का part है। आप इसे tools और components के एक सेट के रूप में सोच सकते हैं जो आपको अपने Java Application के Visual elements, जैसे window, button, text […]

Continue reading
Important Tips of Java Message Service (JMS)

Important Tips of Java Message Service (JMS)

Java Message Service (JMS) एक Important Technology है जो Robust और Scalable enterprises Application बनाने के लिए Use की जाती है। यह Message-Oriented middleware के लिए एक मानक परिभाषित करता है, जिससे Application message का आदान-प्रदान करके अतुल्यकालिक रूप से संवाद कर सकते हैं। Key Features: Point-to-Point (Queues): इस Model में, एक message एक specific […]

Continue reading
JSP Scripting Element and Its Types

Introduction to Java Server Pages of Scripting Element

JSP (Java Server Pages) HTML Pages के भीतर सीधे JAVA Code को Embed करने की एक विधि प्रदान करता है, जिससे Dynamic Content निर्माण संभव हो जाता है। यह Scripting Elements के उपयोग के माध्यम से प्राप्त किया जाता है। ये Element developer को अपने JSP pages में Java तर्क को शामिल करने की अनुमति […]

Continue reading