An open API service indexing awesome lists of open source software.

https://github.com/link89/spring-from-scratch

build spring (boot) project from scratch
https://github.com/link89/spring-from-scratch

Last synced: 12 months ago
JSON representation

build spring (boot) project from scratch

Awesome Lists containing this project

README

          

1. run mybatis-generator-maven-plugin

mvn \
-Dmybatis.generator.jdbcURL=jdbc:mysql://127.0.0.1:3306/db \
-Dmybatis.generator.jdbcUserId=username \
-Dmybatis.generator.jdbcPassword=password \
mybatis-generator:generate

2. package and run
mvn clean package
java -Dserver.port=9000 -jar target/bsi-notify-service-{version}.jar