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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T02:34:45+00:00 2026-06-14T02:34:45+00:00

I want to use hibernate’s TableGenerator for custom key generation final SessionImpl session =

  • 0

I want to use hibernate’s TableGenerator for custom key generation

final SessionImpl session = ((SessionImpl) EntityManagerUtils
            .getEntityManager("CORE").getDelegate());

TableGenerator generator = new TableGenerator();



    Properties params = new Properties(??????????);
    // params.put("identifier_normalizer", ?);

    params.put("table_name", "eflow.docs_number_generators");
    params.put("value_column_name", "tbl.GENERATOR_VALUE");
    params.put("segment_column_name", "tbl.GENERATOR_KEY");
    params.put("increment_size", "25");
    params.put("segment_value", "2011");
    generator.configure(IntegerType.INSTANCE, params, session
            .getSessionFactory().getDialect());

    Serializable id = generator.generate(session, new Object());
    System.out.println(id);

But object with key “identifier_normalizer” is missing and this snippet throws null pointer exception. This object is of type ObjectNameNormalizer which normalizes db object names and is stored in hibernate local mappings.

how to access hibernate’s internal mappings and consequently this ObjectNameNormalizer object ?

Actually as it seems i will need hibernate Mappings object which i don’t know hot to get.

Thanks in advance

  • 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-14T02:34:47+00:00Added an answer on June 14, 2026 at 2:34 am

    Here comes the solution:

      private String generateKey() {
        final SessionImpl session = ((SessionImpl) em.getDelegate());
    
        if (generator == null) {
            synchronized (TableGenerator.class) {
                if (generator == null) {
                    generator = new TableGenerator();
    
                    ObjectNameNormalizer normalizer = new ObjectNameNormalizer() {
    
                        @Override
                        protected boolean isUseQuotedIdentifiersGlobally() {
                            return false;
                        }
    
                        @Override
                        protected NamingStrategy getNamingStrategy() {
                            return new Configuration().getNamingStrategy();
                        }
                    };
                    Properties params = new Properties();
                    params.put("identifier_normalizer", normalizer);
                    params.put("table_name", "eflow.docs_num_generators");
                    params.put("value_column_name", "GENERATOR_VALUE");
                    params.put("segment_column_name", "GENERATOR_KEY");
                    params.put("increment_size", "25");
                    params.put("segment_value", "2011");
                    generator.configure(IntegerType.INSTANCE, params, session
                            .getSessionFactory().getDialect());
                }
            }
        }
    
        Serializable id = generator.generate(session, new Object());
        return id.toString();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to provide a custom Batcher for Hibernate to use (for this reason:
I want to create a web app that will use wicket, hibernate and spring
I have a list of IDs in a String, and want to use Hibernate
I want to ask very simple question. Can we use hibernate's cascade feature without
I want to use hibernate with MS Access. Which dialect should I use and
I want to use Infinispan with hibernate second level cache. My application is running
I use Hibernate, Spring and JSF (Primefaces) in my project. I want to create
can i use hibernate to login jsp page using (session) if i'm not using
I use hibernate-search. I want that each user can see only theirself index and
i want to use hibernate with embedded derby in a standalone application , and

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.