This is an useful tutorial for the programmers to learn about java classes and the terminologies involved in generating them with annotations. The author has given a brief explanation on the definition of metadata, code analysis, compiler checking et
This article tells you what are exceptional events and how to diagnose and overcome them. Exceptional events can take you by surprise and can happen anywhere in a JSP page. As you do in other Java classes you can detect exceptions in a JSP page. Betw
This gives an overview of the ThreadLocal class that appeared in the version 1.2 of the Java platform. It may be difficult to write thread-safe classes and it needs a thorough analysis of the conditions under which variables will be read or written.
You can learn the anatomy of the JSP from this tutorial. A JSP page basically consists of three parts namely, Directives, Scripting Elements, JSP Tags. Any page with a ,jsp extension will compile and run successfully as a valid JSP page. These pages
You can develop dynamic web-based content with Java Server Pages (JSP). As in HTML, JavaServer Pages (JSP) uses the concept of tags as their building blocks. Though JSP offers a set of predefined tags, you can define you own tag extensions that encap
When working with multithread code, a master thread is usually used to send messages. This may be queued up for processing by other threads. During processing by the other threads the master thread puts up an exception, the remaining threads may cont
This is an article that explains Static types, which makes the codes healthier. Except Java language all the other programming language are moving away from Static type checking. Static type checking is a powerful tool against introducing and for det
JIT stands for Just In Time. This tutorial tells the readers how to just design the codes to satisfy the requirements of customers in an enterprise. This tutorial insists on lessening the burden of the developers by using simple programming technique
This tutorial explains the ways and means to use the multi threads in Java program in a proper manner. It demonstrates these concepts with the help of sample programs. It takes for granted that you are familiar with the following terms and concepts l
Combining Servlets, JSP, and JavaBeans is a tutorial explaining the use of Servlets, JSP and Java Beans. Servlets allow convenient management of events and programs,- JSP allows defining excellent response pages while beans had a way of removing some |