Java Development Topics:
Java server pages
JavaServer Pages help a user create Web content that has static and dynamic components. On a JSP page, static data is expressed with HTML, XML, or other text based formats, and dynamic content is expressed with JSP element. JSP uses a unified expression language to help integrate it with JavaServer Faces and other J2EE Web tier technologies. JSP also makes use of the JSP Standard Tag Library. In this section on JavaServer Pages, we offer news, research and tutorials on using JSF to help develop dynamic Web content. Learn how JSP can help create platform-independent Web applications using Java EE 5 technology, including JavaServer Faces and the JavaServer Page Standard Tag Library.
News:
1 - 3 of 10-
OCPJP & OCAJP: Java 7 training requirement for the Oracle Certified Professional Programmer dropped
21 Dec 2011
News - In order to obtain the certified architect position from Oracle, attending and passing a training course is now required. But what about the Java Professional and Java Associate designations, OCPJP and OCAJP for Java 7?
-
JavaOne 2011: Mark it up as a success
TheServerSide Newsfeed | 07 Oct 2011
News - Last year a cloud of gloom hung over the three or four San Francisco hotels in which Oracle had sliced, diced and distributed all of the JavaOne sessions. There was a clear and palpable feeling of distrust and uncertainty that permeated the on-goings,...
-
Mobicents Sip Servlets 1.6.0.FINAL is out
TheServerSide Newsfeed | 11 Aug 2011
News - The release comes with the following new features: SNMP support, support for SIP servers, support for ENUM, Mobicents Sip Servlets, DoS attack protection, JSR 289 Extension, Simple Global Logging Configuration, and IPv6 support. Also of note in the new...
Reference & Learning:
1 - 3 of 9-
Vowels don't cost $500: Pontificating on Java 7 variable naming conventions
26 Jan 2012
Tutorial - When naming your variables, put a little bit of thought into it and name them well. Well thought out variable names make Java programs both easier to read and easier to maintain. Good names can even make Java programming fun.
-
OCPJP & OCAJP Mock Exam Question for the Java 7 Exam
23 Jan 2012
Tutorial - Looking to get Java 7 certified from Oracle, and obtain your OCPJP or OCAJP, Professional or Associate designations? Well, you need to know the tricks they throw at you with regards to operator precedence. This question hits your knowledge of the OCAJP 7...
-
New Java 7 Features: How to Use a More Precise Rethrow in Exceptions from Project Coin
12 Jan 2012
Tutorial - Afficionados of other languages such as Scala or Clojure are always slagging the fact that Java is too verbose and cumbersome. So, it's not too surprising to find out that Java 7 introduced a number of new facilities that can help to trim down the code...
Expert Technical Advice:
1 - 2 of 2-
ServletConfig vs. the ServletContext: Understanding the Difference
02 Oct 2011
Tip - The ServletConfig and ServletContext are two members of the Servlet API that developers often confuse with one another, and sadly, because of the confusion, they often don’t take proper advantage of these objects.
-
Include vs. Forward of the Servlet RequestDispatcher
02 Oct 2011
Tip - The key difference between the two is the fact that the forward method will close the output stream after it has been invoked, whereas the include method leaves the output stream open.