JSP Interview Questions, Servlet Interview Questions,JDBC Interview Questions,Core java Interview Questions, Struts Interview Questions, Spring Interview Questions.
Sycorax - complete tutorials
Programming Tutorials
" Java provides the industry - software companies and customer alike , an opportunity to create a true open computing environment where software is portable,
and customers benefit from increase competition. "
Java and the Future
December 1, 2008-LEJB 3.1: EJB New and Improved!
The EJB 3.0 specification was a huge improvement from what you were used to in the early versions of EJB. Available as an early draft, EJB 3.1 has many more features and is even easier to use.
December 1, 2008-Should Java Assert that Network I/O Can't Occur on the UI Thread?
Doing network I/O on the user interface (UI) thread is bad. Most developers know that and can tell you why; unfortunately, it's still done.
Register now to recieve special alert and latest technology news!
What are JSP Directives?
A directive is a way for you to give special instruction to the container at page translation time.
1)page directive 2)include directive 3)taglib directiveHow many page directive we can use in a single JSP?
language, import, session ,buffer, isThreadSafe, ErrorPage, isErrorPage, Info, contentType
pageEncoding, isELIgnore, autoflush
What is Include Directives? Give Syntex
This is a type of directive tag. If a programmer wants to include contents of a file inside another, then the Include directive is used. The file included can be either static ( HTML file) or dynamic (i.e., another tag file). The Include directive is used to include the contents of other file in the current tag file.
Syntax of Include directive is: <%@ include file = "xxx.html"%>
What is Tag Lib Directives? Give Syntex
A user can customize actions from their tag file using the Tag Lib directive. The Tag Lib directive is a collection of custom tags.
The syntax of Tag Lib directive is: <%@ taglib uri = "tag library URI" prefix = "tag Prefix" %>

