Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f72f5a0

Browse files
committed
first commit
0 parents commit f72f5a0

File tree

15 files changed

+1075
-0
lines changed

15 files changed

+1075
-0
lines changed

‎.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
HELP.md
2+
target/
3+
!.mvn/wrapper/maven-wrapper.jar
4+
!**/src/main/**/target/
5+
!**/src/test/**/target/
6+
7+
### STS ###
8+
.apt_generated
9+
.classpath
10+
.factorypath
11+
.project
12+
.settings
13+
.springBeans
14+
.sts4-cache
15+
16+
### IntelliJ IDEA ###
17+
.idea
18+
*.iws
19+
*.iml
20+
*.ipr
21+
22+
### NetBeans ###
23+
/nbproject/private/
24+
/nbbuild/
25+
/dist/
26+
/nbdist/
27+
/.nb-gradle/
28+
build/
29+
!**/src/main/**/build/
30+
!**/src/test/**/build/
31+
32+
### VS Code ###
33+
.vscode/

‎.mvn/wrapper/maven-wrapper.jar

58.5 KB
Binary file not shown.

‎.mvn/wrapper/maven-wrapper.properties

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# https://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.7/apache-maven-3.8.7-bin.zip
18+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.1/maven-wrapper-3.1.1.jar

‎README.md

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# Spring Boot Redis example
2+
3+
Add Redis Cache into your Spring Boot Application (CRUD example) using `spring-boot-starter-data-redis`.
4+
5+
For more detail, please visit:
6+
> [Spring Boot Redis Cache example](https://www.bezkoder.com/spring-boot-redis-cache-example/)
7+
8+
You can also apply the code easily on following Projects:
9+
> [Spring Boot 3 REST API example](https://www.bezkoder.com/spring-boot-3-rest-api/)
10+
11+
> [Spring Boot Rest API with H2](https://www.bezkoder.com/spring-boot-jpa-h2-example/)
12+
13+
> [Spring Boot Rest API with MySQL](https://www.bezkoder.com/spring-boot-jpa-crud-rest-api/)
14+
15+
> [Spring Boot Rest API with PostgreSQL](https://www.bezkoder.com/spring-boot-postgresql-example/)
16+
17+
> [Spring Boot Rest API with SQL Server](https://www.bezkoder.com/spring-boot-sql-server/)
18+
19+
> [Spring Boot Rest API with MongoDB](https://www.bezkoder.com/spring-boot-mongodb-crud/)
20+
21+
> [Spring Boot Rest API with Cassandra](https://www.bezkoder.com/spring-boot-cassandra-crud/)
22+
23+
> [Spring Boot Rest API with Oracle](https://www.bezkoder.com/spring-boot-hibernate-oracle/)
24+
25+
Front-end that works well with this Back-end
26+
> [Angular 8 Client](https://www.bezkoder.com/angular-crud-app/) / [Angular 10 Client](https://www.bezkoder.com/angular-10-crud-app/) / [Angular 11 Client](https://www.bezkoder.com/angular-11-crud-app/) / [Angular 12 Client](https://www.bezkoder.com/angular-12-crud-app/) / [Angular 13 Client](https://www.bezkoder.com/angular-13-crud-example/) / [Angular 14 Client](https://www.bezkoder.com/angular-14-crud-example/) / [Angular 15 Client](https://www.bezkoder.com/angular-15-crud-example/)
27+
28+
> [Vue 2 Client](https://www.bezkoder.com/vue-js-crud-app/) / [Vue 3 Client](https://www.bezkoder.com/vue-3-crud/) / [Vuetify Client](https://www.bezkoder.com/vuetify-data-table-example/)
29+
30+
> [React Client](https://www.bezkoder.com/react-hooks-crud-axios-api/) / [React Redux Client](https://www.bezkoder.com/redux-toolkit-crud-react-hooks/)
31+
32+
More Practice:
33+
> [Document Spring Boot Rest API with Swagger 3 example](https://www.bezkoder.com/spring-boot-swagger-3/)
34+
35+
> [Spring Boot File upload example with Multipart File](https://www.bezkoder.com/spring-boot-file-upload/)
36+
37+
> [Spring Boot Pagination & Filter example | Spring JPA, Pageable](https://www.bezkoder.com/spring-boot-pagination-filter-jpa-pageable/)
38+
39+
> [Spring Data JPA Sort/Order by multiple Columns | Spring Boot](https://www.bezkoder.com/spring-data-sort-multiple-columns/)
40+
41+
> [Spring Boot Repository Unit Test with @DataJpaTest](https://www.bezkoder.com/spring-boot-unit-test-jpa-repo-datajpatest/)
42+
43+
> [Deploy Spring Boot App on AWS – Elastic Beanstalk](https://www.bezkoder.com/deploy-spring-boot-aws-eb/)
44+
45+
Exception Handling:
46+
> [Spring Boot @ControllerAdvice & @ExceptionHandler example](https://www.bezkoder.com/spring-boot-controlleradvice-exceptionhandler/)
47+
48+
> [@RestControllerAdvice example in Spring Boot](https://www.bezkoder.com/spring-boot-restcontrolleradvice/)
49+
50+
Security:
51+
> [Spring Boot + Spring Security JWT Authentication & Authorization](https://www.bezkoder.com/spring-boot-jwt-authentication/)
52+
53+
Fullstack:
54+
> [Vue + Spring Boot example](https://www.bezkoder.com/spring-boot-vue-js-crud-example/)
55+
56+
> [Angular 8 + Spring Boot example](https://www.bezkoder.com/angular-spring-boot-crud/)
57+
58+
> [Angular 10 + Spring Boot example](https://www.bezkoder.com/angular-10-spring-boot-crud/)
59+
60+
> [Angular 11 + Spring Boot example](https://www.bezkoder.com/angular-11-spring-boot-crud/)
61+
62+
> [Angular 12 + Spring Boot example](https://www.bezkoder.com/angular-12-spring-boot-crud/)
63+
64+
> [Angular 13 + Spring Boot example](https://www.bezkoder.com/spring-boot-angular-13-crud/)
65+
66+
> [Angular 14 + Spring Boot example](https://www.bezkoder.com/spring-boot-angular-14-crud/)
67+
68+
> [Angular 15 + Spring Boot example](https://www.bezkoder.com/spring-boot-angular-15-crud/)
69+
70+
> [React + Spring Boot + MySQL example](https://www.bezkoder.com/react-spring-boot-crud/)
71+
72+
> [React + Spring Boot + PostgreSQL example](https://www.bezkoder.com/spring-boot-react-postgresql/)
73+
74+
Run both Back-end & Front-end in one place:
75+
> [Integrate Angular with Spring Boot Rest API](https://www.bezkoder.com/integrate-angular-spring-boot/)
76+
77+
> [Integrate React.js with Spring Boot Rest API](https://www.bezkoder.com/integrate-reactjs-spring-boot/)
78+
79+
> [Integrate Vue.js with Spring Boot Rest API](https://www.bezkoder.com/integrate-vue-spring-boot/)
80+
81+
## Run Spring Boot application
82+
```
83+
mvn spring-boot:run
84+
```
85+

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /