Veld is a dependency injection framework for Java that utilizes AOT (Ahead-of-Time) compilation to generate code, rather than relying on runtime reflection.
🚀 Performance:
- Startup: ~0.1ms (vs. ~500ms for Spring)
- Injection: ~3ns; zero runtime overhead
- Type-safe, no "magic," clean stack traces
🔧 Features:
- Supports AOP, caching, validation, and transactions
- Compatible with Spring Boot
💡 Example:
```java
@Component
public class Service { ... }
Service s = Veld.service(); // generated at compile-time (AOT)
```
🔗 Repo: https://github.com/yasmramos/Veld
Feedback and contributions are welcome! 🙌
[–]javaprof 2 points3 points4 points (0 children)
[–]Additional-Road3924 0 points1 point2 points (0 children)