Rust REST API, Actix-web, PostgreSQL – Part 1: Overview

This post shows a simple example of a REST API with Rust, Actix-web, and PostgreSQL and its requirements. Rust Actix-web PostgreSQL Requirements These are the items used for these posts and the subsequent ones. Windows 10 Please see How to install

Rust – How to Return JSON Responses from Actix-web

Are you planning to develop an API-only backend using Rust and Actix-web? If so, you need to know how to return JSON responses from Actix-web. This post briefly shows how to create a Rust application using actix-web that returns JSON responses.

Tomcat 9 and Up: JDBC Realm For Basic HTTP Authentication

It is incredible how we can modify Tomcat to help hasten the development. This post will demonstrate how to use Tomcat JDBC Realm, which uses an RDBMS for Basic HTTP Authentication. This could cut down development time and effort for

Java Web Application BASIC Authentication in Tomcat

The fastest way to configure authentication in Tomcat is Basic Authentication. However, it is one of the weakest forms of authentication, and we should not use it in real-life applications. Although we should not use Basic Authentication, it is still

CGI with Tomcat 8

This shows how to configure Apache Tomcat 8 for CGI. Software Environment These are the items we used for this post. Windows 7 Professional SP1 Any web browser Apache Tomcat 8.0.14 ActivePerl 5.16.3.1604 (Windows x86) Java 1.7 (1.7.0_67 – Windows x86)

How To Use WebFlux with Spring Boot

Using WebFlux with Spring Boot is straightforward and may not require changes when moving from Spring MVC. We will still use the same set of annotations like RestController and RequestMapping, to name a few. However, we use WebFlux to tap