https://github.com/benslabbert/tx-manager
https://github.com/benslabbert/tx-manager
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/benslabbert/tx-manager
- Owner: BenSlabbert
- License: apache-2.0
- Created: 2024-05-10T17:47:04.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-10-08T08:16:13.000Z (9 months ago)
- Last Synced: 2025-10-08T10:14:42.441Z (9 months ago)
- Language: Java
- Size: 123 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# TX Manager
The project uses [byte-buddy](https://github.com/raphw/byte-buddy) to enhance Java classes as opposed to using runtime
reflection.
The [byte-buddy-plugin](https://github.com/raphw/byte-buddy/tree/master/byte-buddy-maven-plugin) is invoked on build and
transforms the classes as they are compiled and packaged into the JAR.
This removes the requirement to transform them later during runtime.
## Showcase
Run the examples with the agent:
```shell
java -javaagent:agent/target/agent-uber.jar=hello -jar agent-example/target/agent-example-uber.jar
```
or without the agent:
```shell
java -jar plugin-example/target/plugin-example-uber.jar
```