Category: Uncategorized
-
Locally Run an AWS Serverless Micronaut App
Micronaut has several advantages for getting started quickly in AWS Lambda. For my example, I’m using GraalVM to build a native fast Lambda function. I’m also using AWS CDK to deploy the function. Without further ado, let’s get started. Prerequisites Build the Application Building the software is simple enough. Execute the following command to build…
-

Session Management for Web Apps
HTTP is a stateless protocol meaning that each request does not save any information. When you login into a web application, it must somehow maintain that you are logged in. One of the common approaches to that problem is using a session identifier. Important Qualities “HttpOnly” Session Cookie An HttpOnly cookie prevents JavaScript from accessing…
