English 中文(简体)
Automatic filling entity properties
原标题:

I have some type an architect(?) question

I develop an application, based on Spring and Hibernate (annotated configuration) For each table in my database I added 4 fields: createdBy and modifiedBy(String), created and modified (Datetime). Respectively each entity class also has this fields and getter/setter pairs. So I want to find best practice solution for filling this fields instead adding for each DAO extra code. Is it possible?

I ll be glad to any proposal

最佳回答

Certainly. Just add this code to a base class for all your persistent instances and enable annotation processing:

@PrePersist
public void prePersist()
{
    if (created == null)
    {
        created = updated = createCurrentTimestamp();
        createdBy = updatedBy = CurrentUser.get();
    }
}

@PreUpdate
public void preUpdate()
{
    updated = createCurrentTimestamp();
    updatedBy = CurrentUser.get();
}

public static java.sql.Timestamp createCurrentTimestamp ()
{
    final long now = System.currentTimeMillis();
    final java.sql.Timestamp ts = new java.sql.Timestamp (now);
    ts.setNanos(((int)(now % 1000)) * 1000000);
    return ts;
}

CurrentUser is a ThreadLocal<String> which allows me to specify at the start of an operation which user started it. This way, any object that gets touched will contain the correct information.

Without annotation processing, activate the respective options in your HBM file.

问题回答

Look at Spring AOP. You can assign an "interceptor" for your DAO methods, so that the objects are first handled by the interceptor, and then the execution proceeds to the DAO methods.
In the interceptor you can fill the objects with the data you need.

One possibility would be to define a Hibernate EventListener which can fill in these fields just before each entity is flushed to the database





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签