Tag

Data Binding

0 views collected around this technical thread.

Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Mar 26, 2025 · Backend Development

Master Advanced Data Binding in Spring Boot 3: From Simple Types to Custom Converters

This article demonstrates how to leverage Spring Boot 3's data binding capabilities by converting primitive types to objects, creating custom converters, handling hierarchical object binding, and implementing custom argument resolvers, complete with code examples and execution results.

Custom ConverterData BindingJava
0 likes · 8 min read
Master Advanced Data Binding in Spring Boot 3: From Simple Types to Custom Converters
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Aug 31, 2024 · Backend Development

Prevent Unintended Field Updates in SpringBoot: DTOs vs @InitBinder

This article explains how SpringBoot's default data binding can unintentionally modify unwanted fields and demonstrates three safe approaches—using a dedicated DTO, configuring WebDataBinder with @InitBinder to allow only specific fields, and applying advanced @InitBinder options such as required fields, constructor‑only binding, and custom validators—to ensure precise and secure request parameter handling.

@InitBinderDTOData Binding
0 likes · 7 min read
Prevent Unintended Field Updates in SpringBoot: DTOs vs @InitBinder
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Jun 21, 2024 · Backend Development

Mastering Spring PropertyEditor: Custom Data Binding in Spring Boot

This tutorial explains how to use Java's PropertyEditor and PropertyEditorManager for custom String-to-object conversion, demonstrates registration in both non‑web and web Spring Boot environments, and provides practical code examples for seamless data binding.

Data BindingJavaPropertyEditor
0 likes · 6 min read
Mastering Spring PropertyEditor: Custom Data Binding in Spring Boot
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
May 9, 2024 · Backend Development

Mastering Spring Boot’s Binder: From Basics to Custom Conversions

This article explains how Spring Boot’s Binder class binds external configuration properties to Java objects, demonstrates basic and custom type conversions, shows how to use binding callbacks, and outlines key places where Binder is employed within Spring Boot and Spring Cloud Gateway.

ConfigurationPropertiesCustom ConverterData Binding
0 likes · 11 min read
Mastering Spring Boot’s Binder: From Basics to Custom Conversions
Sanyou's Java Diary
Sanyou's Java Diary
Apr 22, 2024 · Backend Development

Master Spring’s Core: Resource Management, Environment, Type Conversion, and More

Explore a comprehensive guide to Spring’s core mechanisms—including resource handling, environment configuration, type conversion, data binding, generic processing, internationalization, BeanFactory, ApplicationContext, and event publishing—complete with detailed explanations, code demos, diagrams, and practical insights for mastering backend development with Spring.

ApplicationContextData BindingEnvironment
0 likes · 40 min read
Master Spring’s Core: Resource Management, Environment, Type Conversion, and More
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Mar 7, 2024 · Backend Development

Mastering @InitBinder in Spring Boot: Custom Data Binding Techniques

This guide explains how to use @InitBinder and @ControllerAdvice in Spring Boot 2.7.16 to customize WebDataBinder for request parameter conversion, demonstrates practical examples in controllers and global configuration, and shows how to register converters for flexible data binding.

@InitBinderControllerAdviceData Binding
0 likes · 6 min read
Mastering @InitBinder in Spring Boot: Custom Data Binding Techniques
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Dec 2, 2023 · Frontend Development

Vue Quick Start Guide for Backend Developers

This article provides backend developers with a concise Vue quick‑start guide, covering core features such as component‑based architecture, two‑way data binding, and virtual DOM, and demonstrates practical setup via CDN or Vue CLI, along with detailed examples of data handling, computed properties, watchers, methods, and common directives.

ComponentsData BindingJavaScript
0 likes · 12 min read
Vue Quick Start Guide for Backend Developers
Amap Tech
Amap Tech
May 31, 2023 · Frontend Development

Simplifying Component Interaction in Low-Code Frontend Development

The platform replaces complex event‑driven code with a code‑free, expression‑only “saveEffect” mechanism that lets non‑technical users visually link component states by selecting source and target paths and optional transformation functions, simplifying low‑code frontend development and enabling independent workshop creation.

Data Bindingcomponent interactionfrontend
0 likes · 9 min read
Simplifying Component Interaction in Low-Code Frontend Development
JD Tech
JD Tech
Dec 21, 2022 · Fundamentals

Understanding Key‑Value Coding (KVC) in Objective‑C: Principles, Execution Flow, and Advanced Applications

This article analyses the inner workings of Objective‑C’s Key‑Value Coding (KVC) by dissecting its setter and getter generation, primitive value handling, NSNumber/NSValue wrapping, and demonstrates advanced usage such as batch property updates, aggregation, and data filtering in real‑world projects.

Data BindingKVCKey-Value Coding
0 likes · 15 min read
Understanding Key‑Value Coding (KVC) in Objective‑C: Principles, Execution Flow, and Advanced Applications
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Nov 18, 2022 · Mobile Development

Implementing Edit Functionality and Component Reuse in a SwiftUI LinkWorld App

This article walks through the design and implementation of an edit screen for the LinkWorld iOS app, showing how to refactor shared UI parts into reusable SwiftUI components, bind them to a data model, and handle navigation, modal presentation, and update logic using a view‑model.

Component ReuseData BindingEdit View
0 likes · 13 min read
Implementing Edit Functionality and Component Reuse in a SwiftUI LinkWorld App
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Jun 29, 2022 · Backend Development

Mastering Spring @InitBinder: Custom Data Binding in Spring Boot 2.4

This article explains how @InitBinder methods in Spring MVC can initialize WebDataBinder, register custom PropertyEditors, Converters, and Formatters, and demonstrates a complete example with code snippets, while also detailing the internal request‑handling flow that performs parameter binding and type conversion.

@InitBinderCustom ConverterData Binding
0 likes · 8 min read
Mastering Spring @InitBinder: Custom Data Binding in Spring Boot 2.4
ByteFE
ByteFE
Nov 2, 2021 · Frontend Development

Modern Web Development Challenges and Future Directions

This article explores the inefficiencies in modern web development, focusing on collaboration challenges between UI/UX and frontend teams, data interaction issues, and code management difficulties, proposing solutions like component-centric development and improved data binding tools.

Data BindingGraphQLUI/UX Collaboration
0 likes · 32 min read
Modern Web Development Challenges and Future Directions
360 Quality & Efficiency
360 Quality & Efficiency
Jul 12, 2019 · Frontend Development

Principles of Two-Way Data Binding in Vue

This article explains the principle of two-way data binding in Vue's MVVM architecture, detailing how Object.defineProperty is used to create observers that track property changes, notify watchers via a dependency collector, and how the compile process links view directives to model updates.

Data BindingMVVMObserver
0 likes · 3 min read
Principles of Two-Way Data Binding in Vue
Hujiang Technology
Hujiang Technology
Jan 16, 2018 · Frontend Development

Implementing Data Binding in JavaScript: Observer, Compiler, and ViewModel

This article explains the concept, purpose, and elements of data binding in JavaScript, describes view‑to‑model and model‑to‑view binding techniques such as publish‑subscribe, data hijacking and dirty checking, and provides a complete implementation using an Observer, a Compile engine, and a ViewModel to achieve automatic UI updates when the underlying data changes.

Data BindingJavaScriptMVVM
0 likes · 10 min read
Implementing Data Binding in JavaScript: Observer, Compiler, and ViewModel
Tencent Music Tech Team
Tencent Music Tech Team
Sep 22, 2016 · Mobile Development

Understanding Android Data Binding Framework and Its Mechanisms

Android’s Data Binding framework links code and XML UI elements through compile‑time generated binding classes, supporting one‑ and two‑way bindings, reducing boiler‑plate, improving performance via a single view‑hierarchy traversal, offering expressive layout expressions, event binding, observable data models, dirty‑flag rebinds, and built‑in null safety.

Data BindingMobile DevelopmentPerformance
0 likes · 19 min read
Understanding Android Data Binding Framework and Its Mechanisms