Hello,
I use spring-jms (and his dependencies) 3.0.6.RELEASE
With this configuration :
...
<bean id="messageListenerQueue" class="[MYLISTENERCLASS]"/>
<jms:listener-container...
Type: Posts; User: Thieumdesp; Keyword(s):
Hello,
I use spring-jms (and his dependencies) 3.0.6.RELEASE
With this configuration :
...
<bean id="messageListenerQueue" class="[MYLISTENERCLASS]"/>
<jms:listener-container...
Look at the code of the method list(...) in the classe SessionImpl of hibernate, you can see that they use a String[] of implementors, so you can use the interface rather than the implementation. In...
I try but it does not work
Yes, it works. I tried it but forgot do talk about.
No, the load does not work. I have exactly the same exception.
version information :
spring 2.0.2
hibernate : 3.0.2
Hello, i have a problem with the getHibernateTemplate().get(...) Method.
Here is my mapping :
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD...
i find the solution,
the property file messages.properties is used by WSAD. So i change the name of my property file and it works fine.
Thanks.
hello,
here is my bean messageSource :
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basename" value="messages"/>
...
Hello,
I have a messageSource define in a applicationContext xml file (referenced by contextConfigLocation in web.xml)
I use <spring:message/>
It works fine in tomcat (5.0.18), i means i recover...
The problem is that to put session in flowScope, it has to be serialized. And a Session instance can't be serialized if it is connected
without OSIV :
disconnect the session before put it in...
Hello
I wanted to know the link between the events of the FlowExecutionListner and the HttRequest. Particulary, i wanted to know if the requestProcessed occurs BEFORE or AFTER the view rendered....
I'm using PR5
what i am (almost) certain :
all bean dealing with hibernate session is using the same sessionFactory bean
the Session instance is the same in :
the method sessionActive...
It seems that the requestProcessed(...) occurs before the real end of the HTTRequest because when i use OSIF alone (i mean whithout OSIV), the lazy loading doesn't work, i mean when i try to access a...
When i use only OSIF
Unfortunately, as the hibernate session has been disconnected in the method requestProcessed(...), it can't be use by the view to do lazy loading. And i'm not in the two cases...
I reply in this post (because it's the same subject) :
http://forum.springframework.org/showthread.php?t=20322
I know the source of the problem :
I use (try to ;))both :
OSIV (Interceptor on urlMapping bean) : Lazy Loading
OpenSessionInFlowListener (OSIF, listener on the FlowController) : share the...
In fact the method requestProcessed(..) of OpenSessionInFlowListner close the session opened by the OpenSessionInViewInterceptor...
Hello,
I have problems when i use the OpenSessionInFlowListner and the OpenSessionInViewInterceptor (to do lazy loading).
The long session in flow works fine but i've got an error in the...
That's right, but what i try to do is to make it work fine as i done it with Spring MVC
Yes, it's exactly what happened. In processSubmit(...) i can see that the collection have not been...
Hello,
I've got something i can't explain:
I'm trying
to display elements (a list of elements) which are lazy loaded.
after modification of those elements (and a submit), to recover...
Hello,
Is it possible to load a previous save point in order for exemple to display previous screen with its data, but doing this without the back button of the browser.
Thanks. Thieum.