Posts

Showing posts with the label kotlin

Build REST CRUD API's with Kotlin, Spring, Spring Data JPA, and RDBMS

Image
In this article, we will show you how to develop a  REST-style web service with Kotlin, Spring Boot, H2DB. A quick overview of Kotlin, Spring Boot, and H2DB   Kotlin Kotlin is a statically typed, general-purpose programming language targeting the Java platform. Kotlin is concise, safe, pragmatic, and fixated on interoperability with Java code. It can be used virtually everywhere Java is utilized today: for server-side development, Android apps, and much more. Kotlin works great with all subsisting Java libraries and frameworks and runs with the same level of performance as Java. H2DB[RDBMS] H2DB is a relational database management system written in Java. It can be embedded in Java applications or run in client-server mode. Spring Boot Spring boot to develop REST web services and microservices. Spring Boot has taken the Spring framework to the next level. It has drastically reduced the configuration and setup time required for spring projects. We can set up a project with almost zero co

Angular + Kotlin +Spring Boot + Mongo DB CRUD Example

Image
Hello everyone, today we will learn how to develop a full-stack web application that is a basic User Management Application using Angular 10, Kotlin, Spring Boot, and MongoDB . You can download the source code from our GitHub Repository. After completing this tutorial what we will build?  We will build a full-stack web application that is a basic User Management Application with CRUD features:  • Create User  • List User  • Update User  • Delete User  Following is the screenshot of our application - A quick overview of Angular 10, Kotlin, Spring Boot, and MongoDB  Kotlin Kotlin is a statically typed, general-purpose programming language targeting the Java platform. Kotlin is concise, safe, pragmatic, and fixated on interoperability with Java code. It can be used virtually everywhere Java is utilized today: for server-side development, Android apps, and much more. Kotlin works great with all subsisting Java libraries and frameworks and runs with the same level of performance as Java. Mo