{{theTime}}

Search This Blog

Total Pageviews

java.util.regex.PatternSyntaxException: Dangling meta character '*' near index 0

The * is a reserved character in RegEx. Escape the * using \\. Example: String [] linesplitter = line.split("\\*");

No comments:

Setup AWS Application Load Balancer Https

Setting up HTTPS for an AWS Application Load Balancer (ALB) involves configuring an HTTPS listener, deploying an SSL certificate, and defini...