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
- Host: GitHub
- URL: https://github.com/link89/spring-from-scratch
- Owner: link89
- Created: 2017-04-01T11:47:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-01T03:32:56.000Z (about 9 years ago)
- Last Synced: 2025-03-27T22:37:32.983Z (over 1 year ago)
- Language: Java
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.TXT
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