Owner: Core Java J2EE Servlets JDBC JSP JSF Struts Spring EJB URL:http://www.java-j2ee-technologies.blogspot.com/ Join Date: Thu, 27 Nov 2008 06:45:02 -0600 Rating:0 Site Description: Provides information on Java,J2EE Technologies. We will post updates on Core Java , Java Database Connectivity (JDBC) , Java Servlets , Java server Pages (JSP) , Java Versions, Struts framework, Hibernate , Swings , Spring Framework , AJAX , Java
Messag Site statistics:Click here
Scripting in Java: Languages, Frameworks, and Patterns 2009-01-05 09:57:00 Scripting in Java, Dejan Bosanac covers key aspects of scripting with Java, from the exciting new Groovy scripting language to Java’s new Scripting and Web Scripting APIs.Bosanac begins by reviewing the role and value of scripting languages, and then systematically introduces today’s best scripting solutions for the Java platform. He introduces Java scripting frameworks, identifies proven patt Read more:Languages
, Patterns
The Complete Java 2 Certification Study Guide 2009-01-05 09:46:00 The Complete Java 2 CertificationStudyGuide
is packed with information on what you'll need to know to pass both the Sun Java Programmer and Developer Exams. With Java certification becoming ever more popular, this title is an essential resource for anyone who's preparing for it.The Programmer Exam--the first level of Sun certification--is covered first. Basic language features are reviewed, such
Database Programming with JDBC and Java 2009-01-05 09:09:00 Author: George ReeseJava Database
Connectivity classes (JDBC) sensibly provide an interface between a platform-independent programming language (Java) and a standardized database language (Structured Query Language, or SQL). Pretty much every Java program that's involved in transactions or other business operations connects to a database through JDBC; so, familiarity with the JDBC classes can magn Read more:Programming
Java Collections Frame Work Interview Questions 2008-12-04 03:16:00 Java Collections Frame
Work FAQ'sWhat is HashMap and Map? Map is Interface and Hashmap is class that implements this interface.What is the significance of ListIterator? Or What is the difference b/w Iterator and ListIterator?Iterator : Enables you to cycle through a collection in the forward direction only, for obtaining or removing elements.ListIterator : It extends Iterator, allow bidirectional
forward sendRedirect 2008-12-01 09:28:00 Difference Between sendRedirect() and Forward() :Forward( ) : javax.Servlet.RequestDispatcher interface. RequestDispatcher.forward( ) works on the Server. The forward( ) works inside the WebContainer.The forward( ) restricts you to redirect only to a resource in the same web-Application. After executing the forward( ), the control will return back to the same method from where the forward method