In my project i need to use either JSF or Struts.Here i need some cl
Using NetBeans/ Intellij Idea or Websphere for Struts. Regards Jan
View ArticleWhat is the content of the Java 2 security policy file?
The security policy file contains a series of grant entries that identify the permissions granted to an applet or application based on its source and signatures.
View ArticleI am new to jsf rich faces. I am using rich faces datatable rich:dat
Can anyone help me to find RichFaces interview questions?
View ArticleWhat are all the documents have you involved in preparation of a Pro
Program specification documents,functional specification document,Esitimate the time duration for the project,class diagram,etc..
View ArticleWhat is the singleton class in java?
A singleton is a class for which only one instance can exist within a program. In other words, only one, single object of that particular class can be created in a program.
View ArticleWhat is servlets.
servlet is a java program that runs inside a web container,It is a server side program which is used to develope web-application.
View Articlehibernate3.jar file contain 7 dependency jar files what is that ?
hibernate3.jar requires the following 7 dependency jar files asm.jar antlr-version.jar cglib-version.jar commons-collections-version.jar commons-logging-version.jar dom4j-version.jar jta.jar
View Articlecant we call run() method directly instead of calling indirectly throu
yes you can call run() as ordinary method. but while calling run() explicitly u can not achieve multi threading.
View ArticleExplain the Sequence Diagram?
Sequence Diagram is nothing but the specific projects flow of the program which can be simplified sequentially using various diagrams. The flow of the program from one to another and so on untill and...
View Articlewrite a code in jsp to swap two numbers?
a,b a=a+b; b=a-b, a=a-b; write them in scriplet and declaration.
View ArticleIam working as a Project Lead in a s/w comp.The follwing question w
schedule slippage is nothing but slip the schedule ex:if u want to do some work with in time ,but u did not complete in time that is . extra time is allocate denpends upon the request ,company ,time etc.
View ArticleWhat is the need to declare main() method as static in Java?
static keyword specifies that there is no need of instance to call static method and it's information is contained by JVM that calls the static method.That's why we declare main method as static so...
View ArticleWhy Java is a platform independent language?Explain byte code and JV
Java is platform independent language as the compiled version from one platform can be executed on any other platform(OS) and bytecodes are the compiled version of java program which is an intermediate...
View Article