Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8447737
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T10:15:18+00:00 2026-06-10T10:15:18+00:00

I have a webservice that will be persisting and deleting data to a Database.

  • 0

I have a webservice that will be persisting and deleting data to a Database. I want to track in the database which usernames touched which rows of the database. In each table there are columns for usernames to be stored (update columns if you will). There are also triggers on the tables that will take a userID for the transaction and update that table with the username and password that attempted to insert. Is there a way in open JPA where I can get the username (which will be passed from the client) and update some kind of JPA object so that when JPA persists data, that user name will be thrown into the table?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T10:15:20+00:00Added an answer on June 10, 2026 at 10:15 am

    One of the cleanest ways is to implement a common “mapped” superclass for your entities and use a method with @PrePersist annotation to populate the fields.

    @MappedSuperclass
    public class AuditedEntity {
        @Id protected Integer id;
        protected String lastUpdatedBy;
    
        // Setters and getters here
    
        @PreUpdate
        @PrePersist
        public void onChange() {
            String user = .... // Do whatever is needed to get the current user
            setLastUpdatedBy(user);
        }
    }
    
    
    @Entity
    public class Employee extends AuditedEntity {
        // ....
    } 
    

    Another option is to use a separate listener:

    public interface AuditedEntity {
        public static void setLastUpdatedBy(String username);
    }
    
    @Entity
    @EntityListeners({ MyLogger.class, ... })
    public class Employee implements AuditedEntity {
        // ...
    }
    
    public class MyLogger {
        @PreUpdate
        @PrePersist
        public void onChange(Object o) {
            if(o instanceof AuditedEntity) {
                String user = .... // Do whatever is needed to get the current user
                ((AuditedEntity) o).setLastUpdatedBy(user);
            }
        }
    
        @PostPersist
        @PostUpdate
        public void logChange(Object o) {
            // Log the successful operation
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an application in which I have a webservice call that returns data
I have a webservice call that will return an image, now I want to
Goal: create webservice that will query database and return rows, then pass it to
Hi I have an web service based app that will interchange data with our
I have a webservice that I want to query for updates immediately after a
I have a webservice method that reads a photo and returns its byte data.
I have a webservice(.net) that will fetch(AfterReceiveRequest) the incoming message and then check the
I have a Java RESTful webservice that will be called about every 10 seconds
I have a webservice class that will be in a managed package and distributed
I want to write a webservice that will upload a file to our server

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.