Skip to content

Commit 4ee4aa9

Browse files
committed
update latest modules
1 parent 84bbdf6 commit 4ee4aa9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ In this tutorial, we're gonna build a Spring Boot Rest CRUD API example with Mav
1111
- Way to use Spring Data JPA to interact with H2 Database
1212

1313
Front-end that works well with this Back-end
14-
> [Axios Client](https://www.bezkoder.com/axios-request/)
14+
> [Axios Client](https://www.bezkoder.com/axios-request/) / [Javascript Fetch API Client](https://www.bezkoder.com/javascript-fetch/)
1515
16-
> [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/)
16+
> [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/)
1717
1818
> [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/)
1919

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.5.3</version>
8+
<version>2.7.7</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.bezkoder</groupId>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
spring.datasource.url= jdbc:sqlserver://localhost;databaseName=bezkoder_db
1+
spring.datasource.url= jdbc:sqlserver://localhost:1434;encrypt=true;trustServerCertificate=true;databaseName=bezkoder_db
22
spring.datasource.username= zkoder
33
spring.datasource.password= 123456
44

5-
spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.SQLServer2012Dialect
5+
spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.SQLServerDialect
66
spring.jpa.hibernate.ddl-auto= update

0 commit comments

Comments
 (0)