Tag

JavaBean

1 views collected around this technical thread.

Architecture Digest
Architecture Digest
May 14, 2024 · Backend Development

FastJSON Serialization Mechanism and How to Control Method Invocation

This article analyzes a FastJSON serialization issue where a getter method is unexpectedly invoked, explains the underlying ASM-generated serializer workflow, details which methods are considered during serialization, and provides best‑practice code annotations to prevent unwanted method execution.

ASMJavaJavaBean
0 likes · 6 min read
FastJSON Serialization Mechanism and How to Control Method Invocation
Selected Java Interview Questions
Selected Java Interview Questions
Jul 11, 2022 · Backend Development

Using the GsonFormat Plugin to Quickly Convert JSON to Java Beans

This tutorial explains how to install and use the GsonFormat IntelliJ plugin to automatically generate JavaBean classes from JSON strings, dramatically reducing repetitive getter/setter code and improving backend development efficiency.

Backend DevelopmentGsonFormatIntelliJ
0 likes · 4 min read
Using the GsonFormat Plugin to Quickly Convert JSON to Java Beans
Top Architect
Top Architect
Feb 14, 2021 · Backend Development

Using GsonFormat Plugin to Convert JSON to JavaBean in IntelliJ IDEA

This guide explains how to install the GsonFormat plugin in IntelliJ IDEA and use it to quickly transform JSON strings into JavaBean classes with generated getters and setters, dramatically reducing manual mapping effort and improving development efficiency.

GsonFormatIntelliJJSON
0 likes · 4 min read
Using GsonFormat Plugin to Convert JSON to JavaBean in IntelliJ IDEA
Architecture Digest
Architecture Digest
Jul 28, 2017 · Backend Development

Understanding Programs, JavaEE MVC, and Why Maps Can Replace JavaBeans

The article reflects on the nature of programs as code and data, distinguishes persistent and transient data, explains JavaEE MVC and multi‑layer architecture, critiques the overuse of JavaBeans, and advocates using key‑value Maps as a simpler, more flexible data‑transfer model.

BackendJavaJavaBean
0 likes · 10 min read
Understanding Programs, JavaEE MVC, and Why Maps Can Replace JavaBeans