Tagged articles
3 articles
Page 1 of 1
Coder Trainee
Coder Trainee
Feb 20, 2026 · Backend Development

Why Lombok-generated getters cause JSON fields to become lowercase

The article explains how Lombok’s @Data annotation generates getter and setter methods with a lowercase first letter for camel‑case fields, causing Jackson to serialize JSON property names in all lowercase, and offers three fixes: write methods manually, use @JsonProperty, or rename fields to avoid lower‑upper patterns.

JSONJacksonJava
0 likes · 4 min read
Why Lombok-generated getters cause JSON fields to become lowercase
Python Crawling & Data Mining
Python Crawling & Data Mining
May 15, 2022 · Fundamentals

How to Split CamelCase Strings into Readable Words in Python

This article explains how to transform a CamelCase string like "WeLovePython" into a spaced, properly capitalized sentence in Python, presenting five different code solutions—including loop‑based, regex, and string‑method approaches—and compares their implementations.

Code ExamplesString ManipulationcamelCase
0 likes · 5 min read
How to Split CamelCase Strings into Readable Words in Python