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 8276727
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T08:27:28+00:00 2026-06-08T08:27:28+00:00

I would like to bring dependency injection to my persistent entities, but I am

  • 0

I would like to bring dependency injection to my persistent entities, but I am not sure how it can be done.

A salted hash algorithm in my GWT application required a Base64 implementation. GWT ships with an old version of commons-codec. Due to the name conflict—I do not use Maven—I could either figure out how to use the old one or use another implementation, such as Base64.iharder.net.

After adapting several alternatives, I created an interface and adapter classes for each. I injected one implementation. It seemed like a classic use case.

Everything worked well when the persistent entities were created. After storing and retrieving them, however, the fields that were previously injected and not persisted were instantiated with null values.

The issue makes perfect sense. I use DataNucleus, which adds a no-arg constructor. DataNucleus does not inject the dependencies again.

How can I ask my persistence framework to re-inject the dependencies when retrieving the object from the data store?

Thank you.

// salted hash for password storage

@PersistenceCapable
public class SaltedHash implements Serializable {

  private static final long serialVersionUID = 1L;

  private String salt;
  private String hash;

  @NotPersistent
  private final Base64Codec base64Codec;
  @NotPersistent
  private final Sha265Hash sha256Hash;
  @NotPersistent
  private final Random random;

  @Inject
  public SaltedHash(Base64Codec b64, Sha256Hash sha256, Random rnd) {
    base64Codec = b64;
    sha256Hash = sha256;
    random = rnd;
  }

  public void setSecret(String secret) {
    salt = base64Codec.encode(generateSalt());
    hash = base64Codec.encode(sha256Hash.hash(salt + secret));
  }

  public boolean matches(String secret) {
    String maybe = base64Codec.encode(sha256Hash.hash(salt + secret));
    return hash.equals(maybe);
  }

  private byte[] generateSalt() {
    // use random to generate a salt
  }
}
  • 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-08T08:27:31+00:00Added an answer on June 8, 2026 at 8:27 am

    The lifecylce of persistent entities is usually decoupled from the lifecycle of a managed bean. That’s why it’s rather discouraged to use DI / CDI in JPA managed entities.

    According to this definition, JPA entities are technically managed
    beans. However, entities have their own special lifecycle, state and
    identity model and are usually instantiated by JPA or using new.
    Therefore we don’t recommend directly injecting an entity class. We
    especially recommend against assigning a scope other than @Dependent
    to an entity class, since JPA is not able to persist injected CDI
    proxies.

    I reckon that the situation is similar to DataNucleus. Especially this…

    How can I ask my persistence framework to re-inject the dependencies
    when retrieving the object from the data store?

    … is probably quite tricky, because dependencies are proxied in some constellations (read: scopes), but injected directly in others.

    My guess is that it’s much easier if you redesign your model in a way that entities do not rely on DI.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like a home button on all my actives so they can bring
I would like to bring up a Toast and vibrate when call status is
I would like to bring up the Camera in my app, and let the
I need to fire of a bunch of threads and would like to bring
I would like a button to change a label between being visible and not
I would like to know which dependency described in my pom.xml brings a transitive
I would like to prevent a property from being exposed via my WCF web
I would like to find out if any and which database links are being
Being new to OpenCL i would like to know if the following scenario is
I have 8 cells that are being built in my UITableViewController. I would like

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.