Skip to content

Instantly share code, notes, and snippets.

@SanthoshBabuMR
Last active October 4, 2020 03:47
Show Gist options
  • Save SanthoshBabuMR/1c2f36eb93cd65b7a0fb1dbf7068e08a to your computer and use it in GitHub Desktop.
Save SanthoshBabuMR/1c2f36eb93cd65b7a0fb1dbf7068e08a to your computer and use it in GitHub Desktop.
java project structure

Java (Maven) Project layout

  • src
    • main
      • java
      • resources
    • test
      • java
      • resources

Java (Maven) Project layout:: Web Application

  • src
    • main
      • java
      • resources
    • test
      • java
      • resources
    • webapp
      • WEB-INF
        • web.xml
      • jsp
      • html
      • css
      • js
      • images

JAR file

  • META-INF
    • MANIFEST.MF
  • com
    • myorg
      • myApp.java
      • model
        • myModel.java

WAR file

  • META-INF
    • MANIFEST.MF
  • WEB-INF
    • web.xml
    • classes
      • my-app-project-class-files
    • libs
      • dependenct-libraries
  • jsp
  • html
  • css
  • js
  • images
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment