Java持久层框架:Ar4j
jopen
12年前
Ar4j 是一个轻量级的Java持久层框架,基于 ActiveRecord 设计模式。
特性:
- Combining data access with the actual data bean
- Providing functionality by implementing an interface, not extending a class
- Property access by name (getting/setting) as well as java getters/setters
- Serialization into JSON to easily transfer records over the wire
- Full support for equals/hashCode/toString/clone java functionality
- Convention based configuration with fine grained control using annotations
- Custom types supported
- Basic CRUD operations out of the box (find, count, save, reload, delete)
- Dynamic finder methods configured by convention (name) or annotations
- Support for native SQL queries and names queries
- Transaction support
- Spring integration
- Before/after interceptors and pre processors - to be implemented
- Composite bean building - to be defined and implemented