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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T06:38:48+00:00 2026-05-16T06:38:48+00:00

In a web application using struts2 ejb hibernate, is it possible to tell the

  • 0

In a web application using struts2 ejb hibernate, is it possible to tell the application to find or create an entity for a specific persistence-unit name, which is written in persistence.xml file, in the deployment time?

I have two persistence-unit in persistence.xml, and one datasource
(including two “local-tx-datasource”) xml file under the jboss node.

To clearify, I mean, I tried this;

@Entity  
@PersistenceContext(unitName="MY JNDI NAME specified in persistence.xml") 
public abstract class Vehicle {

and doesnt work.. Then tried this and etc..

@PersistenceContext(name="MY PERSISTENCE UNIT NAME specified in persistence.xml")

@PersistenceUnit(name="MY PERSISTENCE UNIT NAME specified in persistence.xml")

and also I tried these above with the “UnitName=..” instead of “name=..” but anything is worked for me…

[SOLVED]

<.exclude-unlisted-classes>true<./exclude-unlisted-classes>
has solved my problem

  • 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-05-16T06:38:48+00:00Added an answer on May 16, 2026 at 6:38 am

    Update: Based on your comment (this is not what I understood from the original question), I don’t think you have any other option than disabling “discovery” and listing explicitly your entities in their respective persistence unit:

    <?xml version="1.0" encoding="UTF-8"?>
    <persistence
        xmlns="http://java.sun.com/xml/ns/persistence"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
        version="2.0">
    
      <persistence-unit name="MyPu1" transaction-type="RESOURCE_LOCAL">
        <provider>org.hibernate.ejb.HibernatePersistence</provider>
        <class>com.mycompany.Foo</class>
        ...
        <exclude-unlisted-classes>true</exclude-unlisted-classes>
        <properties>
          <!-- H2 in memory -->
          <property name="javax.persistence.jdbc.driver" value="org.h2.Driver"/>
          <property name="javax.persistence.jdbc.url" value="jdbc:h2:mem:test"/>
          <property name="javax.persistence.jdbc.username" value="APP"/>
          <property name="javax.persistence.jdbc.password" value="APP"/>
          <property name="hibernate.hbm2ddl.auto" value="update"/>
        </properties>
      </persistence-unit>
    
      <persistence-unit name="MyPu2" transaction-type="RESOURCE_LOCAL">
        <provider>org.hibernate.ejb.HibernatePersistence</provider>
        <class>com.mycompany.Bar</class>
        ...
        <exclude-unlisted-classes>true</exclude-unlisted-classes>
        <properties>
          <!-- Derby server -->
          <property name="javax.persistence.jdbc.driver" value="org.apache.derby.jdbc.ClientDriver"/>
          <property name="javax.persistence.jdbc.user" value="APP"/>
          <property name="javax.persistence.jdbc.password" value="APP"/>
          <property name="javax.persistence.jdbc.url" value="jdbc:derby://localhost:1527/Pu2;create=true"/>
          <property name="hibernate.hbm2ddl.auto" value="update"/>
        </properties>
      </persistence-unit>
    </persistence>
    

    I’m not aware of any syntax at the entity level allowing to assign it to a persistence unit.


    I’m not sure I understood what you’re trying to do but if you want to get an Entity Manager for a specific persistence unit injected, you should do:

    @Stateless
    public class FooBean implements Foo {
        @PersistenceContext(unitName="MyPu1")
        EntityManager em1;
    
        // ...
    }
    

    If this is not what you want, please clarify the question.

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

Sidebar

Related Questions

I use tomcat. I am developing a web application using struts2, and I use
The registered accounts in my web application (Created using struts2) gets a separate site
I am using struts2 to build a web application and I use struts2 tags
I have one legacy web application based on struts2 (primarily using annotation). While debugging
I creating a web application using JSF,Hibernate,Spring. I have added a filter for checking
I'm doing a Web application using Spring 3.1.0.RELEASE, JSF 2.x, JPA 2 with Hibernate
I'm building a dynamic web application in Eclipse using Struts2 and OC4J 10.1.3.3.0. I'm
I am using struts2 for developing a web application. I have include the required
My web application generates an XML file. I'm using a Struts2 stream result to
I am developing a web application in Struts2 (JSP). I am using lot of

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.