Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using glassfish 3.1.2.2

I have:

A project JSF 2.1 with Net Beans

A resource jndi in netbeans project

<resources>
<jdbc-connection-pool allow-non-component-callers="false" associate-with-thread="false" connection-creation-retry-attempts="0" connection-creation-retry-interval-in-seconds="10" connection-leak-reclaim="false" connection-leak-timeout-in-seconds="0" connection-validation-method="auto-commit" datasource-classname="com.mysql.jdbc.jdbc2.optional.MysqlDataSource" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="true" lazy-connection-association="false" lazy-connection-enlistment="false" match-connections="false" max-connection-usage-count="0" max-pool-size="32" max-wait-time-in-millis="60000" name="mysql_tconfig_cgrwinPool" non-transactional-connections="false" pool-resize-quantity="2" res-type="javax.sql.DataSource" statement-timeout-in-seconds="-1" steady-pool-size="8" validate-atmost-once-period-in-seconds="0" wrap-jdbc-objects="false">
    <property name="serverName" value="192.168.0.1"/>
    <property name="portNumber" value="3306"/>
    <property name="databaseName" value="tconfig"/>
    <property name="User" value="usr"/>
    <property name="Password" value="psw"/>
    <property name="URL" value="jdbc:mysql://192.168.0.1:3306/tconfig?zeroDateTimeBehavior=convertToNull"/>
    <property name="driverClass" value="com.mysql.jdbc.Driver"/>
</jdbc-connection-pool>
<jdbc-resource enabled="true" jndi-name="jdbc/tconfig" object-type="user" pool-name="mysql_tconfig_cgrwinPool"/>

Then I try to understand JPA and Persistence

  • There is persistence.XML
  • There is Entity
  • ManagedBean

Persistence.xml define the data source so a particular name is mapped to jdbc/tconfig

 <persistence-unit name="TSAM8PU" transaction-type="JTA">
     <jta-data-source>jdbc/tconfig</jta-data-source>

Entity define the table structure and the specific table on which work

@Entity
@Table( name = "ut_table", catalog = "tconfig", schema = "", uniqueConstraints = { 
    @UniqueConstraint( columnNames = { "usr" } ) } )

Managed bean rapresent the junction and the operation performer, on table with that specific resource using the support of particular

@ManagedBean( name = "usersBean" )
//@SessionScoped
@RequestScoped
public class usersBean {
    private List<UtUtenti> users;
    //Entity class
    private UtUtenti user = new UtUtenti();
    @PersistenceUnit( unitName = "TSAM8PU" )
    private EntityManagerFactory emf;
    @Resource
    private UserTransaction utx;
    ...


    public void update( ActionEvent event ) {
        EntityManager em = emf.createEntityManager();
        try {
            utx.begin();
            em.joinTransaction();
            em.merge( user );
            utx.commit();
            showGrowlUpdMessage();
        } catch (Exception e) {
             ...
        em.close();
        user = null;
    }
}

Now Questions:

1) I need to define at runtime database to work with. The webApp start, the user select from a combo a name, then press submit,and the page show classic login. The login must be done on a DB obtained at this step and entire application now operate on the selected DB

There are

  • config contains a table NAME-DBNAME i use this table to populate the combo
  • master1 is the name of one db
  • master2 is the name of another db

DB master1,master2 has the same structure each one contains for example a table called user which will be used to perform the login.

2) When i work in a specific DB i have some table with same structure t201101,t201102,t201103,t201104 and so on. I like to use a single Bean and single Entity class and at runtime tell on which table work.


I have done my homework and most interesting response are

1) JPA - Using Multiple data sources to define access control

2) JPA - Change table at runtime

But they are not conclusive

I have read EclipseLink site but code example are simple snippet.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.