I need to get the current user in JPA EntityListener
, in a restful webservice. This is my code:
Service Web:
@POST
@Produces({"application/json"})
@Consumes({"application/json"})
public Response create(@HeaderParam("Authorization") String tokenAuth,
AreaTran areaT) {
Response res;
User user = null;
try {
user = testUser(tokenAuth);
Area area = areaCont.create(user, areaT);
res = AppConf.genOk("Area " + area.getNombre() + " creada correctamente");
} catch (Exception e) {
res = le.gen(e, user);
}
return res;
}
Here I get the logged user user = testUser(tokenAuth);
My problem is here:
public class AuditEntityListener {
@PrePersist
public void prePersist(AuditableEntity e) {
e.setCreatedDate(new Date());
//how get the current user for this transaction HERE!!!!!
}
@PreUpdate
public void preUpdate(AuditableEntity e) {
e.setLastModifiedDate(new Date());
}
}
Any way to get the user of the request flow?
This is the solution:
1)In this class store data of current transaction
}
2) Listener to inicialize and clear
3) Use it in any place
}