They wrap around beans to add cross-cutting functionalities.
Proxy objects in Spring AOP wrap around target beans to provide additional functionalities, such as transaction management or logging, without modifying the beans themselves. For example, a `PaymentService` bean might be wrapped in a proxy that handles transaction management, ensuring that each method call is executed within a transaction context.