Posts

Configuring the HTTP Port on Quarkus Applications

Image
Today, I will show how to change the default HTTP Port on Quarkus Application with the help of one example. More Quarkus Related topics, Quarkus + Angular 10 + MongoDB CRUD Example Quarkus + React JS + MongoDB CRUD Example Quarkus + Vue.js + MongoDB CRUD Example Build Reactive CRUD APIs With Quarkus, MongoDB, and Panache QUARKUS + Hibernate CRUD example - Creating a CRUD REST API/Service Build REST CRUD APIs with Quarkus and MyBatis Build Rest CRUD API with MongoDB, Quarkus, and MongoDB Client Build Rest CRUD API with Quarkus and MongoDB Panache Create Quarkus Project With code.quarkus.io: Hello world example Quarkus + FreeMarker + Hibernate - CRUD example Quarkus File Upload Example Quarkus - How to send email via SMTP - Quickstart Quarkus - Interview questions and answers    Following technologies stack being used: JDK 11 IntelliJ IDEA  Quarkus 1.3.0 Maven Maven/Dependency Management [pom.xml]  <?xml version = "1.0" encoding = "UTF-8" ?> <project xmlns

Quarkus + Maven Hello World Example

Image
Hello everyone, Today we will learn how how to engender a Maven + Quarkus hello world project.   More Quarkus Related topics, Quarkus + Angular 10 + MongoDB CRUD Example Quarkus + React JS + MongoDB CRUD Example Quarkus + Vue.js + MongoDB CRUD Example Build Reactive CRUD APIs With Quarkus, MongoDB, and Panache QUARKUS + Hibernate CRUD example - Creating a CRUD REST API/Service Build REST CRUD APIs with Quarkus and MyBatis Build Rest CRUD API with Mongodb, Quarkus, and Mongodb Client Build Rest CRUD API with Quarkus and MongoDB Panache Create Quarkus Project With code.quarkus.io: Hello world example Quarkus + FreeMarker + Hibernate - CRUD example Quarkus File Upload 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    Following technologies stack being used: JDK 11 IntelliJ IDEA  Quarkus 1.3.0 Maven   1.Maven/Depende

Spring Boot Rest XML CRUD example – Web service with XML Request and Response

Image
Hello everyone, Today we will learn how to develop Web service with XML Request and Response in Spring Boot.  You can clone the complete source code from our Github Repository.   Technologies used :      Spring Boot 2.5.4    Java 11 Spring Data JPA H2DB Jackson Dataformat XML 2.10.1  Maven 3   Project Structure: – WebConfig implements WebMvcConfigurer. This is where we set the default content type. – Book data model class corresponds to entity and table books. – BookRepository is an interface that extends JpaRepository for CRUD methods and custom finder methods. It will be autowired in BookController. – BookController is a RestController which has request mapping methods for RESTful requests such as: getBookById, createBook, updateBook, deleteBook... – Configuration for Spring Datasource, JPA & Hibernate in application.properties. – pom.xml contains dependencies for Spring Boot, Jackson Dataformat XML, JPA & H2DB. 2)Maven/Dependency Management [pom.xml]  <? xml version =&quo