Search:

Type: Posts; User: wizhippo; Keyword(s):

Search: Search took 0.02 seconds.

  1. I have not used it in a while as the project...

    I have not used it in a while as the project ended up being php based. But if I recall I think my problem was that I did not have

    <property name="eclipselink.target-server" value="SunAS9"/>
    ...
  2. Jpa transaction neeeds Propagation.SUPPORTS for readOnly=true?

    I have the following that works fine in a jee jta transaction

    @Override
    @Transactional(readOnly = true)
    public Person getPerson(Long id) {
    return entityManager.find(Person.class, id);
    }...
  3. No I didn't that I can tell. My...

    No I didn't that I can tell.

    My persistence.xml only containsthe unit name and that is it.



    <persistence>
    <persistence-unit name="jpaUnit">
    </persistence-unit>
    </persistence>
  4. Toplink not using datasource from applicationContext

    I have the below applicationContext.

    My problem is in glassfish using TopLink jpa, toplink is trying to use the default datasource instead of what I have specified in spring. I can tell this...
  5. Replies
    1
    Views
    768

    topic and multiple consumers

    I have been searching for an example of a topic and multiple consumers but cannot find one. It's always been one queue to one consumer.

    To have multiple consumers for the same topic would I just...
  6. Replies
    9
    Views
    1,341

    you will need to set defaultAutoCommit

    You will need to set defaultAutoCommit.

    the org.postgresql.ds.PGConnectionPoolDataSource seems not to to remember this so you will have to pass it in to you pool manager.

    Here is what I have...
  7. Any suggestion how to save to multiple dao's?

    I plan on the following:

    User class
    UserService interface
    UserServiceHibernateDAO implements UserService
    UserServiceFirstOtherDAO implements UserService
    UserServiceSecondOtherDAO implements...
Results 1 to 7 of 7