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"/>
...
Type: Posts; User: wizhippo; Keyword(s):
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"/>
...
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);
}...
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>
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...
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...
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...
I plan on the following:
User class
UserService interface
UserServiceHibernateDAO implements UserService
UserServiceFirstOtherDAO implements UserService
UserServiceSecondOtherDAO implements...