I'm trying to get CDI Integration, but the following errors occurs at deployment:
WARNING: Error in annotation processing: java.lang.NoClassDefFoundError:...
Type: Posts; User: rafaelsantini; Keyword(s):
I'm trying to get CDI Integration, but the following errors occurs at deployment:
WARNING: Error in annotation processing: java.lang.NoClassDefFoundError:...
Hi,
<bean name="fooJob" class="FooJob"/>
<bean name="methodInvokingJob" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
<property name="targetObject"...
Hi,
I'm getting the following exception. I can't figure out what xml file has the string "--" within comment. Any suggestion?
org.xml.sax.SAXParseException: The string "--" is not permitted...
I have a Quartz job that is raising the LazyInitializationException.
Then, I have included a HibernateInterceptor:
<bean id="txManager"...
I just do the following:
Server:
<bean class="org.springframework.remoting.rmi.RmiServiceExporter">
<property name="serviceName" value="EmprestimoFachada"/>
<property...
By default, the host is localhost (127.0.0.1). I'm using RmiServiceExporter without problems, just declaring the bean.
Hi,
What's the best way for RMI and Hibernate with lazy loading? I'm developing a client for a webapp that access the service layer through RMI. I think that could there be an "open session in...
I'm trying figure out how to implement the following test case using the Spring. The problem is how to access the getAllClassMetadata() method with LocalSessionFactoryBean.
---
SessionFactory...