-
Notifications
You must be signed in to change notification settings - Fork 367
DATAJDBC-204 - Support the annotation based auditing #64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
I've added test for nested bean and bean collection property. It does not work ...
|
When nested bean is null, following exception is occurred.
|
When bean collection define, following exception is occurred.
|
@schauder Do you know something? |
deaceb1
to
6d6b21e
Compare
I've created related issues on spring-data-commons. |
When enabled by using @EnableJdbcAuditing entities will get properties annotated with * @createdby * @CreatedDate * @LastModifiedBy * @LastModifiedDate updated when saved. Original pull request: #64.
I polished and merged the original commit since it is still valuable even when there are limitations with nested entities and the Thanks. |
thx! |
We now support Criteria creation and mapping to express where conditions with a fluent API. databaseClient.select().from("legoset") .where(Criteria.of("name").like("John%").and("id").lessThanOrEquals(42055)); databaseClient.delete() .from(LegoSet.class) .where(Criteria.of("id").is(42055)) .then() databaseClient.delete() .from(LegoSet.class) .where(Criteria.of("id").is(42055)) .fetch() .rowsUpdated() Original pull request: #106.
Document fluent API. Add fluent API for update. Introduce StatementMapper. Migrate Insert to StatementMapper. Refactoring and cleanup. Migrate Select to StatementMapper. Original pull request: #106.
Fixed typos, formatting and minor errors in documentation. Original pull request: #106.
Incorporated feedback from review. Polished documentation and Javadoc. Minor code improvements restructuring for better readability. Removed unused methods types. Some polishing for compiler warnings. Original pull request: #106.
I've fixed DATAJDBC-204.
There are some notes as follow:
Optional
property yetWDYT?