Tag

JSON

0 views collected around this technical thread.

php中文网 Courses
php中文网 Courses
Jun 10, 2025 · Backend Development

Unlock Go’s Power: Master the Most Essential Standard Library Packages

This guide walks through Go’s most powerful standard library packages—fmt, net/http, sync, encoding/json, context, os/io, testing, time, sort, and reflect—showing practical code examples, advanced tips, and best‑practice recommendations to boost development efficiency and write professional Go code.

BackendConcurrencyGo
0 likes · 20 min read
Unlock Go’s Power: Master the Most Essential Standard Library Packages
Test Development Learning Exchange
Test Development Learning Exchange
Jun 7, 2025 · Backend Development

Build a Lightweight Python GUI for Testing REST and SOAP APIs (with .exe Packaging)

This tutorial walks you through creating a compact Python Tkinter GUI that can send GET/POST requests, handle JSON or XML payloads, support Bearer tokens, clean illegal URL characters, and be packaged into a standalone Windows executable using PyInstaller.

API testingGUIHTTP
0 likes · 12 min read
Build a Lightweight Python GUI for Testing REST and SOAP APIs (with .exe Packaging)
Test Development Learning Exchange
Test Development Learning Exchange
Jun 3, 2025 · Backend Development

A Python GUI Tool for JSON Formatting and Comparison

This article introduces a Python‑based GUI application that formats, compares, and highlights differences between two JSON files, detailing its features, implementation using tkinter, json and DeepDiff, example usage, and instructions for running and extending the tool.

DeepDiffDiffGUI
0 likes · 10 min read
A Python GUI Tool for JSON Formatting and Comparison
Aikesheng Open Source Community
Aikesheng Open Source Community
Jun 3, 2025 · Databases

Root Cause Analysis of MySQL 5.7 JSON NOT NULL Rollback Failure and Its Fix

The article details a MySQL 5.7 bug where rollback SQL generated for a JSON NOT NULL column produces an empty string instead of NULL, explains the underlying binlog behavior, reproduces the issue with sample tables, and provides a practical workaround by converting the JSON column to TEXT before re‑importing the data, while recommending strict SQL_MODE for production.

Database TroubleshootingJSONMySQL
0 likes · 7 min read
Root Cause Analysis of MySQL 5.7 JSON NOT NULL Rollback Failure and Its Fix
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
May 31, 2025 · Backend Development

Mastering Jackson ObjectMapper in Spring Boot 3: Real-World Cases & Performance Tips

This article explores Jackson's ObjectMapper in Spring Boot 3, covering basic serialization/deserialization, converting between objects, JSON strings, JsonNode, and collections, custom serializers/deserializers, handling unknown fields, and performance tuning with the Afterburner module and JMH benchmarks.

JSONJacksonJava
0 likes · 12 min read
Mastering Jackson ObjectMapper in Spring Boot 3: Real-World Cases & Performance Tips
Sohu Tech Products
Sohu Tech Products
May 28, 2025 · Frontend Development

A One‑Line Guard for Safe localStorage JSON Parsing in Frontend Development

This article explains why naïvely parsing JSON from localStorage often crashes applications, and provides a concise safeJSON wrapper, versioned key strategy, and TypeScript guards to prevent runtime errors and ensure robust frontend data handling.

Error HandlingJSONJavaScript
0 likes · 4 min read
A One‑Line Guard for Safe localStorage JSON Parsing in Frontend Development
FunTester
FunTester
May 27, 2025 · Backend Development

Java Serialization: Ten Common Pitfalls and Safer Alternatives

Java serialization, while convenient for persisting objects, suffers from versioning issues, hidden fields, mutable data snapshots, performance overhead, security vulnerabilities, singleton breaches, final field tampering, external dependencies, maintenance burdens, and format limitations, and the article recommends explicit serialVersionUID, custom methods, and JSON/Protobuf alternatives.

JSONJavaProtobuf
0 likes · 18 min read
Java Serialization: Ten Common Pitfalls and Safer Alternatives
Code Mala Tang
Code Mala Tang
May 24, 2025 · Fundamentals

Master JSON: Structure, Nesting, and Access in JavaScript & Python

This article explains what JSON is, its language‑independent syntax, how to define objects, arrays and nested structures, and demonstrates practical ways to parse and manipulate JSON data using JavaScript and Python code examples.

Data InterchangeJSONJavaScript
0 likes · 10 min read
Master JSON: Structure, Nesting, and Access in JavaScript & Python
Architect's Tech Stack
Architect's Tech Stack
May 20, 2025 · Operations

Visualizing Nginx Access Logs with Loki and Grafana

This guide explains how to collect Nginx access logs, convert them to JSON, store them in Loki using Promtail, and visualize the data with Grafana dashboards, including installation of required modules, Docker deployment, and world‑map panel configuration.

GrafanaJSONLogging
0 likes · 8 min read
Visualizing Nginx Access Logs with Loki and Grafana
macrozheng
macrozheng
May 18, 2025 · Fundamentals

Install and Explore JSON Hero: A Powerful JSON Viewer

This guide introduces JSON Hero, a user‑friendly tool for viewing and editing JSON data, explains how to install it locally with Git and npm, shows how to use the web version, and highlights its multiple viewing modes and sharing features.

Column ViewInstallationJSON
0 likes · 5 min read
Install and Explore JSON Hero: A Powerful JSON Viewer
Java Captain
Java Captain
May 16, 2025 · Backend Development

Open-Source Java JSON Framework with Reflection-Based Serialization and Deserialization

This article introduces an open‑source Java JSON framework that uses recursive parsing and reflection to serialize and deserialize objects without third‑party libraries, supports generic and array types, and provides extensible features such as custom annotations, JsonPath, and HTML‑safe output.

JSONJavaOpenSource
0 likes · 14 min read
Open-Source Java JSON Framework with Reflection-Based Serialization and Deserialization
Architecture & Thinking
Architecture & Thinking
May 15, 2025 · Databases

Redis 8.0 Unveiled: New AGPLv3 License, Vector Search, JSON & More

Redis 8.0, released on May 1 2025, introduces a major license shift to AGPL‑v3, adds eight native data structures—including vector sets, JSON, and time‑series—enhances the query engine with up to 16× performance gains, improves scalability, security, and cloud‑native support, and provides extensive code examples for AI and real‑time analytics.

JSONRedisSecurity
0 likes · 15 min read
Redis 8.0 Unveiled: New AGPLv3 License, Vector Search, JSON & More
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
May 13, 2025 · Backend Development

Master Spring Boot 3: 5 Real-World Cases & Code Samples

This article presents a curated collection of practical Spring Boot 3 examples—including JSON parsing, automatic database script execution, custom DataSource configuration, properties/YAML loading, and data binding with validation—complete with code snippets and configuration details for Java backend developers.

BackendConfigurationJSON
0 likes · 8 min read
Master Spring Boot 3: 5 Real-World Cases & Code Samples
Test Development Learning Exchange
Test Development Learning Exchange
May 11, 2025 · Backend Development

Using the default Parameter in Python's json Module for Custom Serialization

This article explains how the json module's default parameter can be used to serialize unsupported Python objects, such as datetime, by providing a custom function or by subclassing JSONEncoder, and includes clear code examples demonstrating both approaches.

DateTimeJSONPython
0 likes · 4 min read
Using the default Parameter in Python's json Module for Custom Serialization
Test Development Learning Exchange
Test Development Learning Exchange
May 10, 2025 · Fundamentals

Using Python's json Module: Serialization, Deserialization, and Common Operations

This article introduces Python's built‑in json module, explaining how to serialize Python objects to JSON strings and files, deserialize JSON back to Python, and demonstrates common tasks such as pretty‑printing, handling Unicode, working with lists and nested structures, custom encoders, and network responses.

Data HandlingJSONPython
0 likes · 8 min read
Using Python's json Module: Serialization, Deserialization, and Common Operations
Test Development Learning Exchange
Test Development Learning Exchange
May 2, 2025 · Fundamentals

29 Minimal Python Code Snippets for API Automation Testing

This article presents 29 concise Python code examples covering common API automation tasks such as JSON conversion, file I/O, dictionary manipulation, request handling, data filtering, encryption, URL encoding, time formatting, exception handling, and regular expressions, each accompanied by clear output and commentary.

API testingJSONPython
0 likes · 9 min read
29 Minimal Python Code Snippets for API Automation Testing
Test Development Learning Exchange
Test Development Learning Exchange
Apr 30, 2025 · Backend Development

Python JSON Handling Examples for API Automation

This article presents a comprehensive collection of Python code snippets demonstrating how to parse, construct, modify, query, and validate JSON data for common API automation tasks, covering conversion, file I/O, field extraction, merging, sorting, and token handling.

API testingBackendData Processing
0 likes · 10 min read
Python JSON Handling Examples for API Automation
Java Captain
Java Captain
Apr 23, 2025 · Backend Development

Custom MyBatis TypeHandler for Automatic JSON and Enum Conversion

This article explains how to create custom MyBatis TypeHandler classes to automatically convert Java objects—such as JSON strings and enum codes—to appropriate JDBC types, simplifying data persistence in Spring Boot applications and improving code maintainability.

EnumJSONJava
0 likes · 9 min read
Custom MyBatis TypeHandler for Automatic JSON and Enum Conversion