Tag

Advice

1 views collected around this technical thread.

Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Apr 15, 2025 · Backend Development

Master Spring AOP: Real‑World AspectJ Pointcut & Advice Examples in Spring Boot 3

This comprehensive guide walks you through Spring Boot 3 AOP fundamentals, showing how to declare aspects with @Aspect, define pointcuts using @Pointcut, apply various advice types, manage ordering, bind method parameters, and leverage inter‑type declarations with clear code examples and diagrams.

AOPAdviceAspectJ
0 likes · 11 min read
Master Spring AOP: Real‑World AspectJ Pointcut & Advice Examples in Spring Boot 3
Java Tech Enthusiast
Java Tech Enthusiast
Apr 1, 2025 · R&D Management

Understanding Performance C Ratings and How to Respond

Performance “C” ratings are often misused as scapegoats rather than true assessments, so employees should compile concrete evidence of their work, confront managers for specific feedback, request re‑evaluation if reasons are vague, stay composed, and leverage the documentation to protect their career and negotiate fairly.

Adviceappraisalcareer
0 likes · 4 min read
Understanding Performance C Ratings and How to Respond
Selected Java Interview Questions
Selected Java Interview Questions
Oct 18, 2024 · Backend Development

Implementing Hot‑Pluggable AOP in Spring: Dynamic Management of Advice and Advisors

This article demonstrates how to build a hot‑pluggable AOP solution in Spring by dynamically adding and removing Advice, Advisor, and related components through custom endpoints, event listeners, and Spring’s bean factory APIs, enabling users to control logging at runtime.

AOPAdviceDynamic
0 likes · 10 min read
Implementing Hot‑Pluggable AOP in Spring: Dynamic Management of Advice and Advisors
Architect's Guide
Architect's Guide
Jul 3, 2024 · Backend Development

Hot‑Pluggable AOP Implementation in Spring: Dynamically Managing Advice

This article demonstrates how to implement hot‑pluggable AOP in Spring by allowing users to dynamically add or remove advice at runtime, covering prerequisite concepts, core logic, complete code examples, and test scenarios that show logging activation and deactivation without restarting the application.

AOPAdviceDynamic Plugin
0 likes · 9 min read
Hot‑Pluggable AOP Implementation in Spring: Dynamically Managing Advice
JD Retail Technology
JD Retail Technology
Apr 28, 2024 · Big Data

From Confusion to Mastery: A Newcomer's Journey in Big Data Testing

This article recounts a junior tester's two‑year growth at JD.com, detailing early uncertainties, practical learning methods, step‑by‑step big‑data testing tasks, big‑sale preparation experiences, and actionable advice for newcomers aiming to thrive in the big‑data testing field.

AdviceBig DataData Platform
0 likes · 10 min read
From Confusion to Mastery: A Newcomer's Journey in Big Data Testing
Java Tech Enthusiast
Java Tech Enthusiast
Apr 26, 2024 · Fundamentals

Eight Hard‑Earned Lessons for IT Programmers

The article outlines eight hard‑earned lessons for IT programmers: most are short‑term, low‑level coders; excel horizontally and vertically; learn from open‑source; grasp architecture and tech choices; prioritize communication, reporting, and PPT skills; recognize tech leads as report architects; value speed in repetitive tasks; and maintain cautious professional relationships after colleagues depart.

AdviceIT industrySoftware Development
0 likes · 3 min read
Eight Hard‑Earned Lessons for IT Programmers
Java Architect Essentials
Java Architect Essentials
Feb 1, 2024 · Backend Development

Implementing Hot‑Pluggable AOP in Spring: Dynamic Management of Advice

This article demonstrates how to build a hot‑pluggable AOP solution in Spring by dynamically adding and removing Advice at runtime, covering the required concepts, core implementation code, a complete demo, and practical considerations for backend Java developers.

AOPAdviceDynamic
0 likes · 8 min read
Implementing Hot‑Pluggable AOP in Spring: Dynamic Management of Advice
Architect
Architect
Jan 26, 2024 · Backend Development

Dynamic Hot‑Pluggable AOP in Spring: Managing Advice at Runtime

This article explains how to implement a hot‑pluggable AOP mechanism in Spring by dynamically adding or removing Advice through custom endpoints and event listeners, covering core concepts, implementation code, a demonstration, and best‑practice considerations for backend developers.

AOPAdviceBackend Development
0 likes · 10 min read
Dynamic Hot‑Pluggable AOP in Spring: Managing Advice at Runtime
Code Ape Tech Column
Code Ape Tech Column
Dec 25, 2023 · Backend Development

Dynamic Hot‑Pluggable AOP in Spring: Runtime Management of Advice

This article explains how to implement a hot‑plugable AOP mechanism in Spring that lets end users enable or disable logging advice at runtime by dynamically adding or removing Advice, Advisor, and Proxy definitions through custom endpoints and event listeners.

AOPAdviceDynamic
0 likes · 10 min read
Dynamic Hot‑Pluggable AOP in Spring: Runtime Management of Advice
IT Services Circle
IT Services Circle
Oct 3, 2023 · R&D Management

13 Pieces of Advice from a 40‑Year Veteran Programmer

A seasoned software engineer with nearly four decades of experience shares thirteen practical pieces of advice, covering lifelong learning, diverse programming experiences, realistic expectations, personal motivation, work‑life balance, and continuous growth to help newcomers thrive in a long‑term programming career.

Advicecareerexperience
0 likes · 10 min read
13 Pieces of Advice from a 40‑Year Veteran Programmer
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Feb 6, 2023 · Backend Development

Mastering Spring AOP Advice Lifecycle and Types with Code Examples

This article explains the Spring AOP advice lifecycle, distinguishes shared and per‑instance advice beans, and details each advice type—around, before, throws, after‑returning, and introduction—along with practical Java code snippets for implementation.

AOPAdviceJava
0 likes · 10 min read
Mastering Spring AOP Advice Lifecycle and Types with Code Examples
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Jan 31, 2023 · Backend Development

Master Spring AOP: Enabling @AspectJ and Building Custom Pointcuts

This article explains how to enable @AspectJ support in Spring (both via annotations and XML), defines custom AspectJ pointcuts and advice, and dives into Spring AOP APIs such as Pointcut, ClassFilter, MethodMatcher, and utility classes for composing pointcuts.

AOPAdviceAspectJ
0 likes · 10 min read
Master Spring AOP: Enabling @AspectJ and Building Custom Pointcuts
Top Architect
Top Architect
Apr 21, 2022 · Backend Development

Understanding AOP: Joinpoint Design, Advice, and Weaving in Java

This article explains the background, concepts, and implementation details of Aspect‑Oriented Programming in Java, covering joinpoint interface design, advice abstraction, static and dynamic weaving, and how Spring AOP applies these principles with illustrative code and diagrams.

AOPAdviceAspect-Oriented Programming
0 likes · 9 min read
Understanding AOP: Joinpoint Design, Advice, and Weaving in Java
Java Tech Enthusiast
Java Tech Enthusiast
Jun 8, 2021 · Backend Development

Introduction to AOP (Aspect Oriented Programming) in Java

This article introduces Aspect‑Oriented Programming in Java, explaining how AOP separates cross‑cutting concerns like logging using join points, pointcuts, advice, and aspects, and demonstrates dynamic proxies, various advice types, XML configuration, and aspect ordering within Spring AOP.

AOPAdviceAspect-Oriented Programming
0 likes · 20 min read
Introduction to AOP (Aspect Oriented Programming) in Java
Selected Java Interview Questions
Selected Java Interview Questions
Mar 12, 2021 · Backend Development

Spring AOP Advice Types, Execution Order, and Sample Code

This article explains the five Spring AOP advice types, their execution order when combined in a single aspect, and provides a complete Java code example demonstrating before, after, after‑returning, after‑throwing, and around advices with normal and exceptional flows.

AOPAdviceAspectJ
0 likes · 6 min read
Spring AOP Advice Types, Execution Order, and Sample Code
Java Captain
Java Captain
Nov 17, 2018 · Backend Development

My Journey of Self‑Learning Java: From College to Professional Development

The author shares a candid, step‑by‑step account of how he transitioned from a college student with only basic C knowledge to a proficient Java developer through disciplined self‑study, project practice, and strategic career choices, offering practical advice for aspiring programmers.

AdviceJavaSoftware Development
0 likes · 9 min read
My Journey of Self‑Learning Java: From College to Professional Development
Qunar Tech Salon
Qunar Tech Salon
Nov 13, 2014 · Frontend Development

Common Mistakes When Learning to Code and Focusing on Essential Front‑End Technologies

The article shares a recent graduate's journey learning to code, highlighting two major mistakes—over‑studying unnecessary technologies and not coding early—and offers a concise list of essential front‑end tools (HTML, CSS, JavaScript, jQuery) plus Python and Django for rapid prototyping.

AdviceDjangoPython
0 likes · 6 min read
Common Mistakes When Learning to Code and Focusing on Essential Front‑End Technologies