https://github.com/bezkoder/spring-boot-angular-15-mysql-example
Fullstack Angular 15 + Spring Boot + MySQL CRUD example - Spring Rest API, Spring Data JPA - Angular HTTPClient, Forms, Router and Bootstrap 4.
https://github.com/bezkoder/spring-boot-angular-15-mysql-example
angular angular-15 angular-spring angular-springboot angular15 crud crud-app crud-application crud-operation crud-operations crud-sample fullstack fullstack-application fullstack-development mysql mysql-database spring spring-boot springboot
Last synced: 9 months ago
JSON representation
Fullstack Angular 15 + Spring Boot + MySQL CRUD example - Spring Rest API, Spring Data JPA - Angular HTTPClient, Forms, Router and Bootstrap 4.
- Host: GitHub
- URL: https://github.com/bezkoder/spring-boot-angular-15-mysql-example
- Owner: bezkoder
- Created: 2022-12-20T04:57:27.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-20T04:57:58.000Z (about 3 years ago)
- Last Synced: 2025-03-28T10:47:34.531Z (9 months ago)
- Topics: angular, angular-15, angular-spring, angular-springboot, angular15, crud, crud-app, crud-application, crud-operation, crud-operations, crud-sample, fullstack, fullstack-application, fullstack-development, mysql, mysql-database, spring, spring-boot, springboot
- Language: TypeScript
- Homepage:
- Size: 199 KB
- Stars: 3
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Boot + Angular 15 + MySQL CRUD example
Full-stack Angular 15 + Spring Boot + MySQL CRUD Tutorial Application in that:
- Each Tutorial has id, title, description, published status.
- We can create, retrieve, update, delete Tutorials.
- We can also find Tutorials by title.

For more detail, please visit:
> [Spring Boot + Angular 15 + MySQL: CRUD example](https://www.bezkoder.com/spring-boot-angular-15-mysql/)
Run both Back-end & Front-end in one place:
> [Integrate Angular with Spring Boot Rest API](https://www.bezkoder.com/integrate-angular-spring-boot/)
More Practice:
> [Angular + Spring Boot: File upload example](https://www.bezkoder.com/angular-15-spring-boot-file-upload/)
> [Angular + Spring Boot: JWT Authentication and Authorization example](https://www.bezkoder.com/angular-15-spring-boot-jwt-auth/)
## Run Spring Boot application
```
mvn spring-boot:run
```
The Spring Boot Server will export API at port `8081`.
## Run Angular Client
```
npm install
ng serve --port 8081
```