https://github.com/digaev/springboot-starter-template
https://github.com/digaev/springboot-starter-template
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/digaev/springboot-starter-template
- Owner: digaev
- Created: 2019-03-27T06:37:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-03T04:04:49.000Z (about 7 years ago)
- Last Synced: 2025-06-24T13:12:19.287Z (about 1 year ago)
- Language: JavaScript
- Size: 167 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Boot Starter Template
This template is completely configured for developing Spring Boot based applications with VS Code, Gradle, JSP and Webpack.
## Usage
```bash
# Clone this repository
# Change directory
cd springboot-starter-template
# Install Node.js packages
yarn install
# Compile assets (during development use `yarn run watch`)
yarn run build
# Run this command in separate terminal for continuous building
gradle bootJar --continuous
# Lauch the application
gradle bootRun
```
The server starts on 3000 port [http://localhost:3000](http://localhost:3000).
* Views are located in `src/main/webapp/WEB-INF/views`
* Assets (JavaScript and CSS) are located in `src/main/webapp/WEB-INF/assets`