Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

README.md

File metadata and controls

31 lines (22 loc) · 1.16 KB

r2dbc-proxy-examples

r2dbc-proxy sample projects.

listener-example

This example provides sample listener implementations. Currently, there are listeners that integrate with Spring Cloud Sleuth and Micrometer.

Also, this example uses ProxyFactory implementation with Spring's ProxyFactory framework to create proxies. (optional)

java-agent-example

This example provides sample implementation to apply r2dbc-proxy using Java Agent.

With Java Agent, application does NOT need to know or aware of r2dbc-proxy. So, it is a non-intrusive way to integrate the r2dbc-proxy framework to the application.

Also, this uses ProxyFactory implementation with Byte Buddy which performs byte code manipulation to create proxies. (optional)