diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-12-03 14:00:31 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-12-03 14:00:31 +0100 |
commit | 3a9a839165b735694698010a8aae1672a364e948 (patch) | |
tree | d2c33f4e1b92613c7d493e82a579f5089bef60a2 /java-vaadin/HOWTO | |
parent | 9e255f98b2c90724a1796892bccee5986f373ef1 (diff) | |
download | skeletons-3a9a839165b735694698010a8aae1672a364e948.zip skeletons-3a9a839165b735694698010a8aae1672a364e948.tar.gz |
rename vaadin-app into java-vaadin
Diffstat (limited to 'java-vaadin/HOWTO')
-rw-r--r-- | java-vaadin/HOWTO | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/java-vaadin/HOWTO b/java-vaadin/HOWTO new file mode 100644 index 0000000..1dcc806 --- /dev/null +++ b/java-vaadin/HOWTO @@ -0,0 +1,22 @@ +WAR format (http://tomcat.apache.org/tomcat-7.0-doc/appdev/deployment.html#Standard_Directory_Layout + +*.html, *.jsp, *.js, *.css, *.png, etc. + The HTML and JSP pages, along with other files that must be visible to the client browser for your application. + In larger applications you may choose to divide these files into a subdirectory hierarchy, + but for smaller apps, it is generally much simpler to maintain only a single directory for these files. + +/WEB-INF/web.xml + The Web Application Deployment Descriptor for your application. + This is an XML file describing the servlets and other components that make up your application, + along with any initialization parameters and container-managed security constraints that you want the server to enforce for you. + This file is discussed in more detail in the following subsection. + +/WEB-INF/classes/ + This directory contains any Java class files (and associated resources) required for your application, + including both servlet and non-servlet classes, that are not combined into JAR files. + If your classes are organized into Java packages, you must reflect this in the directory hierarchy under /WEB-INF/classes/. + +/WEB-INF/lib/ + This directory contains JAR files that contain Java class files (and associated resources) required for your application, + such as third party class libraries or JDBC drivers. + |