-
-
Notifications
You must be signed in to change notification settings - Fork 229
Files and Directories Structure
Anantha Raju C edited this page Sep 29, 2020
·
1 revision
The project (a.k.a. project directory) has a particular directory structure. A representative project is shown below:
.
βββ Spring Elements
βββ src
β βββ main
β βββ java
β βββ io.github.anantharajuc.sbtest
β β β
β β βββio.github.anantharajuc.sbtest.auditing
β β β
β β βββio.github.anantharajuc.sbtest.security.authorization
β β β
β β βββio.github.anantharajuc.sbtest.backend
β β β β
β β β βββio.github.anantharajuc.sbtest.person
β β β β
β β β βββio.github.anantharajuc.sbtest.backend.persistence.repositories
β β β
β β βββio.github.anantharajuc.sbtest.backend.service
β β
β βββ io.github.anantharajuc.sbtest.util.config
β β
β βββ io.github.anantharajuc.sbtest.enums
β β
β βββ io.github.anantharajuc.sbtest.exception
β β
β βββ io.github.anantharajuc.sbtest.security
β β
β βββ io.github.anantharajuc.sbtest.util
β β
β βββ io.github.anantharajuc.sbtest.web
β β
β βββ io.github.anantharajuc.sbtest.web.controllers
β β
β βββ io.github.anantharajuc.sbtest.web.domain.frontend
βββ src
β βββ main
β βββ resources
β βββ data
β β βββ mysql
β β βββ migrations
β β βββ V0_0_1__initialize_structure.sql
β β βββ V0_0_2__audit_structure.sql
β β βββ V0_0_3__populate_data.sql
β β βββ V0_0_4__data_geo.sql
β β βββ V0_0_5__data_address.sql
β β βββ V0_0_6__data_person.sql
β β βββ V0_0_7__data_security.sql
β βββ i18n
β β βββ messages.properties
β β βββ messages_es.properties
β βββ static
β β βββ css
β β βββ images
β β βββ js
β β βββ favicon.ico
β βββ templates
β β βββ fragments
β β β βββ body_scripts.html
β β β βββ footer.html
β β β βββ htmlhead.html
β β β βββ navigation.html
β β β βββ pagetitle.html
β β β βββ social_buttons.html
β β β
β β βββ pages
β β β βββ about.html
β β β βββ built_with.html
β β β βββ close.html
β β β βββ form.html
β β β βββ index.html
β β β βββ login.html
β β β βββ settings.html
β β β
β β βββ error.html
β β βββ layout.html
β β
β βββ application-dev.properties
β βββ application-production.properties
β βββ application-qa.properties
β βββ application-staging.properties
β βββ application.properties
β βββ banner.txt
β βββ log4j2.xml
βββ src
β βββ test
β βββ java/io/github/anantharajuc/sbtest/service
β βββ PersonServiceImpl.test
βββ JRE System Library
βββ Maven Dependencies
βββ bin
βββ logs
β βββ application.log
βββ src
βββ target
β βββapplication-0.0.1-SNAPSHOT
βββ mvnw
βββ mvnw.cmd
βββ pom.xml
βββ README.md