what is Directory Structure of webapplication?
Answer Posted / dhanabir
Directory Structure
SampleApplication(Root)
-->jsp(all the JSP pages under this folder)
like SampleApplication/jsp/common/Header.jsp
like SampleApplication/jsp/common/LeftNevigator.jsp
like SampleApplication/jsp/common/Footer.jsp
like SampleApplication/jsp/Employee/AddEmployee.jsp
-->html(All the necessary html pages under this folder)
like SampleApplication/html/Warning.html
-->theme(can put CSS file)
like SampleApplication/theme/Theme.css
-->javascripts(All the Javascript files under this folder)
like SampleApplication/javascripts/Calander.js
-->images(All the image pictures under this folder)
like SampleApplication/images/logo.gif
-->src/com (All the java source codes under this folder
like SampleApplication/src/com/beans/EmployeeBean.java
(all the simple java bean which acts as DTO)
like
SampleApplication/src/com/servlets/EmployeeServlet.java(all
the controller java servlets )
like
SampleApplication/src/com/common/ConnectionBroker.java(all
the modeldata java )
like SampleApplication/src/com/common/EmployeeData.java
(all the modeldata java using DTO )
com:-package,bean:-bean folder
SampleApplication/src/resources/ApplicatioResources.properti
es
-->WEB-INF/classes(the outputs compile classes of the
corresponding java files in src/com )
like SampleApplication/src/com/beans/EmployeeBean.class
(all the simple java bean which acts as DTO)
like
SampleApplication/src/com/servlets/EmployeeServlet.class
(all the controller java servlets )
like
SampleApplication/src/com/common/ConnectionBroker.class(all
the modeldata java )
like SampleApplication/src/com/common/EmployeeData.class
(all the modeldata java using DTO )
-->WEB-INF/lib(all the required jar files)
like SampleApplication/WEB-INF/lib/class12.jar
-->WEB-INF/web.xml(Deployment descriptor)
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Why frameworks are used in java?
What do you mean by j2ee module?
What are the most important topics in java?
Explain the four types of container that the j2ee specification defines
What do you understand by a thin client?
What is actionform?
What is container-managed transaction?
What is java web technologies?
What is japplet in java?
What is basic authentication?
What is the description for expression element?
explain the technologies that j2ee platform provides for developing components.
What does enterprise javabeans module contain?
Is tomcat a java ee?
What are j2ee concepts?