Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 711 Bytes

checklist.md

File metadata and controls

19 lines (15 loc) · 711 Bytes

Web intro

  • Remove autogenerated comments from index.jsp.
  • Always add one empty line to the end of the file.
  • Don't use alfa version of dependencies
  • Check your jsp naming to match the convention. It should start with lowercase letter and each adjacent word should start with capital letter.

Example: thisIsMyFile.jsp

  • If you want to run your code in the main method you should remove following line from pom.xml:
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>servlet-api</artifactId>
    <version>2.5</version>
    <scope>provided</scope>   <!-- remove this line-->
</dependency>