Posts

Showing posts with the label Java Framework

Kotlin + Quarkus + Hibernate - Build REST CRUD API example

Image
Hello everyone, today we will learn how to build RESTful API using Kotlin ,  Quarkus , and Hibernate  with the help of one simple example. You can download the source code from our Github repository . Quarkus  is a Java framework designed to run within containers. Fixating on expeditious start-up times and low memory utilization makes it more felicitous to run within container orchestration platforms like Kubernetes.  Quarkus  supports many industry-standard libraries such as Hibernate, Kubernetes, RESTEasy, Eclipse MicroProfile, and more... More Quarkus Related topics, QUARKUS + Hibernate CRUD example - Creating a CRUD REST API/Service Build REST CRUD API with Quarkus and MyBatis Create Quarkus Project With code.quarkus.io: Hello world example It uses JAX-RS for the REST endpoints, JPA to preserve data models, and CDI for dependency injections.   Let's start to build RESTful API with  QUARKUS  Technologies used: Quarkus 2.2.3.Final Hibernate 5.5.7.Final H2 Database Kotlin Project

Kotlin + Quarkus - Hello world example

Image
Hello everyone, Today we will learn how how to create a Kotlin + Quarkus hello world application. More Quarkus Related topics, QUARKUS + Hibernate CRUD example - Creating a CRUD REST API/Service Build REST CRUD APIs with Quarkus and MyBatis Create Quarkus Project With code.quarkus.io: Hello world example Quarkus - How to send email via SMTP - Quickstart Quarkus - Qute - Hello World Example Quarkus + Maven Hello World Example Configuring the HTTP Port on Quarkus Applications Quarkus - Interview questions and answers Create Quarkus Project With  code.quarkus.io Launch Quarkus Initializr using  https://code.quarkus.io/  link Specify Project Details  Look at the above diagram, we have specified the following details: Build Tool: Gradle with Kotlin Group: org.knf.dev.demo Artifact: kotlin-quarkus-helloworld Search & Pick extensions: RESTEasy JSON-B Once, all the details are entered, click on Generate your application button will generate a Quarkus project and downloads it. Next, Unzip t

Quarkus - Qute - Hello World Example

Image
Hello everyone, today we will learn how to develop a Quarkus web application, using Qute Template engine.   Following technologies stack being used: JDK 11 Qute 2.2.3.Final Quarkus  2.2.3.Final Maven More Quarkus Related topics, QUARKUS + Hibernate CRUD example - Creating a CRUD REST API/Service Build REST CRUD APIs with Quarkus and MyBatis Create Quarkus Project With code.quarkus.io: Hello world example Quarkus - How to send email via SMTP - Quickstart Quarkus - Qute - Hello World Example Quarkus + Maven Hello World Example Configuring the HTTP Port on Quarkus Applications Quarkus - Interview questions and answers Project Structure Dependency management - Maven[pom.xml] <? xml version ="1.0" ?> < project xsi :schemaLocation ="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns ="http://maven.apache.org/POM/4.0.0" xmlns: xsi ="http://www.w3.org/2001/XMLSchema-instance" > < modelVersi