Search:

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

Search: Search took 0.01 seconds.

  1. Number of concurrent consumers never decrease

    Hello,

    I use spring-jms (and his dependencies) 3.0.6.RELEASE

    With this configuration :

    ...
    <bean id="messageListenerQueue" class="[MYLISTENERCLASS]"/>
    <jms:listener-container...
  2. Replies
    10
    Views
    3,320

    Look at the code of the method list(...) in the...

    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...
  3. Replies
    10
    Views
    3,320

    I try but it does not work

    I try but it does not work
  4. Replies
    10
    Views
    3,320

    Yes, it works. I tried it but forgot do talk...

    Yes, it works. I tried it but forgot do talk about.
  5. Replies
    10
    Views
    3,320

    No, the load does not work. I have exactly the...

    No, the load does not work. I have exactly the same exception.

    version information :
    spring 2.0.2
    hibernate : 3.0.2
  6. Replies
    10
    Views
    3,320

    getHibernateTemplate().get(...) problem

    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...
  7. Replies
    3
    Views
    944

    [SOLVE] messageSource and Websphere

    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.
  8. Replies
    3
    Views
    944

    hello, here is my bean messageSource : ...

    hello,

    here is my bean messageSource :

    <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
    <property name="basename" value="messages"/>
    ...
  9. Replies
    3
    Views
    944

    messageSource and Websphere

    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...
  10. Replies
    27
    Views
    7,099

    The problem is that to put session in flowScope,...

    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...
  11. Replies
    1
    Views
    832

    FlowExecutionListener and HttpRequest

    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....
  12. Replies
    27
    Views
    7,099

    I'm using PR5 what i am (almost) certain : ...

    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...
  13. Replies
    27
    Views
    7,099

    It seems that the requestProcessed(...) occurs...

    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...
  14. Replies
    27
    Views
    7,099

    When i use only OSIF Unfortunately, as the...

    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...
  15. Replies
    21
    Views
    13,505

    I reply in this post (because it's the same...

    I reply in this post (because it's the same subject) :
    http://forum.springframework.org/showthread.php?t=20322
  16. Replies
    27
    Views
    7,099

    I know the source of the problem : I use (try to...

    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...
  17. Replies
    21
    Views
    13,505

    In fact the method requestProcessed(..) of...

    In fact the method requestProcessed(..) of OpenSessionInFlowListner close the session opened by the OpenSessionInViewInterceptor...
  18. Replies
    21
    Views
    13,505

    Hello, I have problems when i use the...

    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...
  19. Replies
    27
    Views
    7,099

    That's right, but what i try to do is to make it...

    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...
  20. Replies
    27
    Views
    7,099

    LazyInitializationException and webflow

    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...
  21. Replies
    1
    Views
    668

    continuation

    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.
Results 1 to 21 of 21