Skip to content

project tree

fridlund edited this page Mar 2, 2020 · 1 revision
recruitment
├─ .travis.yml
├─ Procfile
├─ pom.xml
├─ src
   └─ main
      ├─ client
      │  ├─ static
      │  │  └─ css
      │  │     └─ standard.css
      │  └─ templates
      │     ├─ layout
      │     │  └─ partials
      │     │     └─ navigation.html
      │     └─ websites.html
      ├─ java
      │  └─ iv1201
      │     └─ group1
      │        └─ applications
      │           └─ recruitment
      │              ├─ Main.java
      │              ├─ config
      │              │  └─ WebSecurityConfig
      │              ├─ controller
      │              │  └─ RegistrationController
      │              ├─ domain
      │              │  └─ Role
      │              ├─ error
      │              │  └─ Custom exceptions
      │              ├─ exceptionhandling
      │              │  ├─ Exception handlers
      │              │  └─ validation
      │              │     └─ User validation
      │              ├─ model
      │              │  └─ Mostly JPA Repositories
      │              └─ service
      │                 └─ Using the models to preform actions like database    |                       calls
      ├─ resources
      │  └─ application.properties
      └─ scripts
         └─ SQL scripts

Clone this wiki locally