Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saka7/spring-boot-angular4-boilerplate
Quickstart for spring boot + angular 4 projects
https://github.com/saka7/spring-boot-angular4-boilerplate
angular angular-cli angular4 boilerplate-files gradle jwt-authentication quickstart spring-boot webpack
Last synced: about 1 month ago
JSON representation
Quickstart for spring boot + angular 4 projects
- Host: GitHub
- URL: https://github.com/saka7/spring-boot-angular4-boilerplate
- Owner: Saka7
- Created: 2017-02-04T18:02:06.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-12T14:28:03.000Z (about 6 years ago)
- Last Synced: 2024-10-11T08:06:04.857Z (about 1 month ago)
- Topics: angular, angular-cli, angular4, boilerplate-files, gradle, jwt-authentication, quickstart, spring-boot, webpack
- Language: Java
- Homepage:
- Size: 178 KB
- Stars: 157
- Watchers: 18
- Forks: 81
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Boot + Angular 4 Boilerplate
![spring-boot-angular4-boilerplate](https://raw.githubusercontent.com/Saka7/spring-boot-angular4-boilerplate/master/frontend/src/assets/images/favicon.png)
[![Code Climate](https://codeclimate.com/github/Saka7/spring-boot-angular4-boilerplate/badges/gpa.svg)](https://codeclimate.com/github/Saka7/spring-boot-angular4-boilerplate)
[![Issue Count](https://codeclimate.com/github/Saka7/spring-boot-angular4-boilerplate/badges/issue_count.svg)](https://codeclimate.com/github/Saka7/spring-boot-angular4-boilerplate)Quick start for Spring Boot + Angular 4 projects with JWT auth
## Includes:
Front-end:
- angular-cli boilerplate files
- JWT authentication serviceBack-end:
- gradle build file
- boilerplate files
- JWT authentication## Setup
You can use `setup.sh` script to change name and version of the app and database connection properties.
Just run `sh setup.sh` and follow the instructions.## Build and Run
First of all you need to configure the database. Properties are located in `./backend/src/main/resources/application.properties` file.
> By default application is using PostgreSQL database(name: `test`, user: `test`, password: `test`).
Also you need to configure JWT secret in file listed above.
1. Run `npm install --prefix frontend` to install front-end dependencies.
2. Run `npm run build:prod --prefix frontend` to build angular application.
3. Run `./init_db` to create database, dbuser and dump default schema.
4. Run `gradle build -p backend` to build a spring boot application.
5. Run `gradle bootRun -p backend ` or `java -jar backend/build/libs/app-name-[version].jar` to start spring boot application on embedded server.> By default server will be running on port `8080`.
## Development
- `npm start --prefix frontend` to start front-end server for development.
- `npm run start:prod --prefix frontend` to start front-end server with service-workers.
- `gradle bootRun -p backend ` to start spring boot application on embedded server.> By default server will be running on port `4200`
## Testing
- `npm test --prefix frontend` - to run front-end unit tests.
- `npm run e2e --prefix frontend` - to run end to end tests.
- `gradle test -p backend` - to run server tests.## Technologies used
- [spring-boot 1.5.3](https://projects.spring.io/spring-boot/)
- [spring-mvc 4.3.6](https://docs.spring.io/spring/docs/current/spring-framework-reference/html/mvc.html)
- [spring-data-jpa 1.11.0](http://projects.spring.io/spring-data-jpa/)
- [spring-security 4.2.1](https://projects.spring.io/spring-security/)
- [jjwt 0.7.0](https://github.com/jwtk/jjwt)
- [lombok 1.16.12](https://projectlombok.org/)
- [junit 4.11](http://junit.org/junit4/)
- [gradle 3.3](https://gradle.org/)
- [postgresql 9.5](https://www.postgresql.org/)
- [h2 1.4](http://www.h2database.com/html/main.html)
- [angular-cli 1.1.1](https://cli.angular.io/)
- [angular 4.2.2](https://angular.io/)
- [rxjs 5](http://reactivex.io/rxjs/)
- [jasmine 2.5](https://jasmine.github.io/)
- [karma 1.0](https://karma-runner.github.io/1.0/index.html)
- [protractor 4](http://www.protractortest.org/#/)## License
spring-boot-angular4-boilerplate is released under the [MIT License](https://opensource.org/licenses/MIT).