This project, maybe not project, is just a demo what I did when I learnt the SpringBoot
Graduate:
|---src
|---main
|---java
|---com.master.graduate
|---admin
|---config
|---customer
|---utils
|---GraduateApplication.java
|---resources
|---public
|---resources
|---backup
|---*.sql
|---static
|---tmplates
|---application.properties
|---test
|---pom.xml
- create a database, and select a backup sql file from the
resources/backup
randomly, for example,a.sql
mysql> create databsae graduate;
mysql> use graduate;
- import the sql file content into the database you created
mysql> source /path/of/yours/a.sql
-
update the proxy and address in the
application.properties
which is the spring boot properties. -
open a java IDE like VsCode, Eclipse or IntelliJ IDEA who supports maven, and import the project used by
pom.xml
-
start Graduate Applicaion
- Java 1.8
- maven 3.8
- Spring Boot 2.2.4.RELEASE
- MySQL 8.0
If it helps you, it's my pleasure