NOTE: THIS PAGE IS STILL A WORK IN PROGRESS AS OF 02/17/2021
In the Spring/React projects for this course:
- the top level directory structure follows conventions for Spring Boot projects
- there is a
javascriptsubdirectory that contains code for a React app
Directory Structure under /src/main/java/.../
Under the src/main/java directory, under a package name suitable for the project, you’ll find this directory structure:
adviceconfigcontrollersdocumentsentitiesmodelsrepositoriesservices
A parallel structure under src/test/java has the test cases for this code.
Directory Structure under javascript
Under the javascript directory, you’ll find this directory structure:
build(a temporary directory that is in.gitignore)node_modules(a temporary directory that is in.gitignore)publicsrc
Under src you’ll find this hierarchy:
maintest
Under main, you’ll find these files directly:
App.jsApp.css
And these directories:
assetscomponentspagesutils
There are also a variety of files directly in javascript/src
index.cssindex.jslogo.svgserviceWorker.jssetupTests.js