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 is implicit Object? give example.
Implicit objects are created by the Web container and contain information related to a particular request, page, or application.
| Variable | class | Description |
| application | javax.servlet.ServletContext | The context for the JSP page's servlet and any Web components contained in the same application. |
| config | javax.servlet.ServletConfig | Initialization information for the JSP page's servlet. |
| exception | java.lang.Throwable | Accessible only from an error page. |
| out | javax.servlet.jsp.JspWriter | The output stream. |
| page | java.lang.Object | The instance of the JSP page's servlet processing the current request. |
| pageContext | javax.servlet.jsp.PageContext | The context for the JSP page. |
| request | Subtype of javax.servlet.ServletRequest | The request triggering the execution of the JSP page. |
| response | Subtype of javax.servlet.ServletResponse | The response to be returned to the client. Not typically used by JSP page authors. |
| session | javax.servlet.http.HttpSession | The session object for the client. |

