Thanks and i guess this would have been ideal if i weren't using EJB3.0.
Since there is no remote home iface in ejb3.0 i am using a direct jndi lookup
Please find my spring file below
<bean...
Type: Posts; User: praveengeorge; Keyword(s):
Thanks and i guess this would have been ideal if i weren't using EJB3.0.
Since there is no remote home iface in ejb3.0 i am using a direct jndi lookup
Please find my spring file below
<bean...
I am using Spring to Inject the SessionBean references into the application. This is done in the war project which is wrapped in an ear. The problem is when the ear is deployed , the remote jndi...
Try using the following approach...
<bean
class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />
<bean id="catalogService"...
Hi,
I have a table ContentEntry and then Another Table ContentRating
I have annotated the ContentEntry entity like the following.
@OneToMany(fetch = FetchType.EAGER,...