https://github.com/bezkoder/spring-boot-angular-14-crud-example
Fullstack Spring Boot + Angular 14 CRUD example - Spring Web, Spring Data JPA, embedded database (H2 database), Angular 14, HttpClient, Router and Bootstrap 4.
https://github.com/bezkoder/spring-boot-angular-14-crud-example
angular angular-14 angular14 crud crud-application crud-operation crud-operations crud-sample spring spring-boot springboot
Last synced: about 2 months ago
JSON representation
Fullstack Spring Boot + Angular 14 CRUD example - Spring Web, Spring Data JPA, embedded database (H2 database), Angular 14, HttpClient, Router and Bootstrap 4.
- Host: GitHub
- URL: https://github.com/bezkoder/spring-boot-angular-14-crud-example
- Owner: bezkoder
- Created: 2022-06-23T05:02:14.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-23T05:09:10.000Z (almost 3 years ago)
- Last Synced: 2025-03-28T10:47:34.613Z (2 months ago)
- Topics: angular, angular-14, angular14, crud, crud-application, crud-operation, crud-operations, crud-sample, spring, spring-boot, springboot
- Language: TypeScript
- Homepage:
- Size: 200 KB
- Stars: 15
- Watchers: 2
- Forks: 23
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Boot + Angular 14 CRUD example
Full-stack Angular 14 + Spring Boot Tutorial CRUD 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.
> [Spring Boot + Angular 14 CRUD example](https://www.bezkoder.com/spring-boot-angular-14-crud/)
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-13-spring-boot-file-upload/)> [Angular + Spring Boot: JWT Authentication and Authorization example](https://www.bezkoder.com/angular-13-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
```