|
| 1 | +# Spring Boot R2DBC + MySQL example: CRUD Application |
| 2 | + |
| 3 | +Spring Boot R2DBC + MySQL example - CRUD application that uses Spring Data Reactive (R2DBC) to interact with MySQL database and Spring WebFlux for Reactive Rest API. You'll know: |
| 4 | +- How to configure Spring Data Reactive, R2DBC to work with MySQL Database |
| 5 | +- How to define Data Models and Repository interfaces |
| 6 | +- Way to create Spring Rest Controller to process HTTP requests |
| 7 | +- Way to use Spring Data R2DBC to interact with MySQL Database |
| 8 | + |
| 9 | +For more detail, please visit: |
| 10 | +> [Spring Boot R2DBC + MySQL example](https://www.bezkoder.com/spring-r2dbc-mysql/) |
| 11 | + |
| 12 | +Front-end that works well with this Back-end |
| 13 | +> [Angular 8 Client](https://www.bezkoder.com/angular-crud-app/) |
| 14 | + |
| 15 | +> [Angular 10 Client](https://www.bezkoder.com/angular-10-crud-app/) |
| 16 | + |
| 17 | +> [Angular 11 Client](https://www.bezkoder.com/angular-11-crud-app/) |
| 18 | + |
| 19 | +> [Angular 12 Client](https://www.bezkoder.com/angular-12-crud-app/) |
| 20 | + |
| 21 | +> [Angular 13 Client](https://www.bezkoder.com/angular-13-crud-example/) |
| 22 | + |
| 23 | +> [Angular 14 Client](https://www.bezkoder.com/angular-14-crud-example/) |
| 24 | + |
| 25 | +> [Angular 15 Client](https://www.bezkoder.com/angular-15-crud-example/) |
| 26 | + |
| 27 | +> [Vue 2 Client](https://www.bezkoder.com/vue-js-crud-app/) |
| 28 | + |
| 29 | +> [Vue 3 Client](https://www.bezkoder.com/vue-3-crud/) |
| 30 | + |
| 31 | +> [Vuetify Client](https://www.bezkoder.com/vuetify-data-table-example/) |
| 32 | + |
| 33 | +> [React Client](https://www.bezkoder.com/react-hooks-crud-axios-api/) |
| 34 | + |
| 35 | +> [React Redux Client](https://www.bezkoder.com/redux-toolkit-crud-react-hooks/) |
| 36 | + |
| 37 | +More Practice: |
| 38 | +> [Spring Boot File upload example with Multipart File](https://www.bezkoder.com/spring-boot-file-upload/) |
| 39 | + |
| 40 | +> [Spring Boot Pagination & Filter example | Spring JPA, Pageable](https://www.bezkoder.com/spring-boot-pagination-filter-jpa-pageable/) |
| 41 | + |
| 42 | +> [Spring Data JPA Sort/Order by multiple Columns | Spring Boot](https://www.bezkoder.com/spring-data-sort-multiple-columns/) |
| 43 | + |
| 44 | +> [Spring Boot Repository Unit Test with @DataJpaTest](https://www.bezkoder.com/spring-boot-unit-test-jpa-repo-datajpatest/) |
| 45 | + |
| 46 | +Associations: |
| 47 | +> [Spring Boot One To Many example with Spring JPA, Hibernate](https://www.bezkoder.com/jpa-one-to-many/) |
| 48 | + |
| 49 | +> [Spring Boot Many To Many example with Spring JPA, Hibernate](https://www.bezkoder.com/jpa-many-to-many/) |
| 50 | + |
| 51 | +Security: |
| 52 | +> [Spring Boot + Spring Security JWT Authentication & Authorization](https://www.bezkoder.com/spring-boot-jwt-authentication/) |
| 53 | + |
| 54 | +Deployment: |
| 55 | +> [Deploy Spring Boot App on AWS – Elastic Beanstalk](https://bezkoder.com/deploy-spring-boot-aws-eb/) |
| 56 | + |
| 57 | +> [Docker Compose Spring Boot and MySQL example](https://www.bezkoder.com/docker-compose-spring-boot-mysql/) |
| 58 | + |
| 59 | +Fullstack: |
| 60 | +> [Vue.js + Spring Boot + MySQL example](https://bezkoder.com/spring-boot-vue-js-mysql/) |
| 61 | + |
| 62 | +> [Vue.js + Spring Boot + PostgreSQL example](https://bezkoder.com/spring-boot-vue-js-postgresql/) |
| 63 | + |
| 64 | +> [Angular 10 + Spring Boot + MySQL example](https://www.bezkoder.com/angular-10-spring-boot-crud/) |
| 65 | + |
| 66 | +> [Angular 11 + Spring Boot + MySQL example](https://www.bezkoder.com/angular-11-spring-boot-crud/) |
| 67 | + |
| 68 | +> [Angular 12 + Spring Boot + MySQL example](https://bezkoder.com/angular-12-spring-boot-mysql/) |
| 69 | + |
| 70 | +> [Angular 13 + Spring Boot + MySQL example](https://www.bezkoder.com/spring-boot-angular-13-mysql/) |
| 71 | + |
| 72 | +> [Angular 14 + Spring Boot + MySQL example](https://www.bezkoder.com/spring-boot-angular-14-mysql/) |
| 73 | + |
| 74 | +> [Angular 15 + Spring Boot + MySQL example](https://www.bezkoder.com/spring-boot-angular-15-mysql/) |
| 75 | + |
| 76 | +> [React + Spring Boot + MySQL example](https://www.bezkoder.com/react-spring-boot-crud/) |
| 77 | + |
| 78 | +> [React + Spring Boot + PostgreSQL example](https://www.bezkoder.com/spring-boot-react-postgresql/) |
| 79 | + |
| 80 | +Run both Back-end & Front-end in one place: |
| 81 | +> [Integrate Angular with Spring Boot Rest API](https://www.bezkoder.com/integrate-angular-spring-boot/) |
| 82 | + |
| 83 | +> [Integrate React.js with Spring Boot Rest API](https://www.bezkoder.com/integrate-reactjs-spring-boot/) |
| 84 | + |
| 85 | +> [Integrate Vue.js with Spring Boot Rest API](https://www.bezkoder.com/integrate-vue-spring-boot/) |
| 86 | + |
| 87 | +## Run Spring Boot application |
| 88 | +``` |
| 89 | +mvn spring-boot:run |
| 90 | +``` |
0 commit comments