Thursday, April 12, 2012

Session 0 - File Structure of a Web Application in Netbeans

->Web Pages
In the project windows, you will see the web pages directory where all the web pages are stored.
Inside the Web Pages, there is a folder named WEB-INF which contained web.xml file (Deployment Descriptor of the project).

->Source Packages
All the java files, servlets are stored in Source packages.

->Test Packages
All the java files which are used for testing purpose are stored in Test Packages Folder.

->Libraries
All the libraries are stored in the libraries folder, like JDK library, GlassFish library, MySQL connector library, etc.

->Test Libraries
All the test libraries like JUnit library, GlassFish test library are stored in Test Library Folder.

->Configuration Files
This is last folder which is created when you create the web project, this generally contains MANIFEST file and web.xml (Deployment Descriptor of the application)


No comments:

Post a Comment