Search:

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

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    23
    Views
    4,901

    Hi As it seems that this is an unusual...

    Hi

    As it seems that this is an unusual problem, I have dropped my workspace. With my new workspace, grails command works fine. I don't know what was the problem.

    If you want me to investigate...
  2. Replies
    23
    Views
    4,901

    Hi I'am using STS 2.3.0 on windows XP. I am...

    Hi

    I'am using STS 2.3.0 on windows XP. I am using JRE 1.6 (1.6.0_16)

    My main problem is that I see nothing in the sts console window. When I launch a grails command, it just show me an empty...
  3. Replies
    23
    Views
    4,901

    Grails support not working

    Hi

    I've just installed STS 2.3.0. I have followed the steps to add the grails extension. I can now create grails projects but I have several problems :

    1 - When I create a grails project, it...
  4. Replies
    0
    Views
    1,692

    maven jar index

    Hi,

    I am using Spring for my project and I am experiencing some problems with startup time that is about 70s. We have 1530 beans in our application context.

    After working of startup time...
  5. Replies
    4
    Views
    1,103

    Sorry but the comparison is between two tests...

    Sorry but the comparison is between two tests that creates exactly the same number of panels. The other test was juste here to show that the problem only applies for panels, not for simple beans
    ...
  6. Replies
    4
    Views
    1,103

    Memory consumption with swing apps

    Hi

    I am using spring to wire my swing application but I have some problems with the memory footprint of my app.

    So I did some tests to see what can be the spring part in this footprint. I have...
  7. Replies
    6
    Views
    1,651

    For information, it seems that the problem occurs...

    For information, it seems that the problem occurs when loading remoting servlet (for http invoker calls) while calling business code that loads lazy-inited beans.

    I will dig further to create a...
  8. Replies
    6
    Views
    1,651

    Hi, I am trying to reproduce my deadlock...

    Hi,

    I am trying to reproduce my deadlock problem on a simpler test case to submit it and I found this code (AbstractBeanFactory line 957 in 2.0) :


    synchronized (this.factoryBeanObjectCache) {...
  9. Replies
    6
    Views
    1,651

    Here is the code, OpenBeanFactory really does...

    Here is the code, OpenBeanFactory really does nothing more than add some logging :



    package com.bodet.context;

    import org.springframework.beans.factory.BeanCreationException;
    import...
  10. Replies
    6
    Views
    1,651

    Hi, Just want to say that I have reproduced...

    Hi,

    Just want to say that I have reproduced the problem with spring 2.0 final. The problem occurs if I open my GUI during server initialization. Here is an eclipse Stack Trace of the deadlock...
  11. Replies
    1
    Views
    839

    Here is my workaround To enable exception...

    Here is my workaround

    To enable exception translation with hibernate I have my own daosupport class like this :


    public class BodetDaoSupport extends HibernateDaoSupport
    {
    protected...
  12. Replies
    1
    Views
    839

    Hibernate and exception translation

    Hi,

    I've just passed to spring 2.0-rc3 and it seems that my exception translations do not work.
    I've seen in the rc3 changelog that I now have to explicitly specify exception translation with...
  13. Replies
    6
    Views
    1,651

    deadlock on context initialization

    Hi,

    I cannot reproduce easily the problem with a test case but I am experiencing deadlock in Spring during initialization with 2.0-rc2
    It is between a call to 'getBeanNamesForType' and a refresh...
  14. Replies
    0
    Views
    1,426

    access context files in jar

    Do you plan to allow to choose context files that are in dependent jars ?
    I am in this case. The context of my project need some context files that are bundled with another jar.

    Is this a planned...
  15. Error in my LocalSessionFactoryBean postProcessConfiguration

    Hi all,

    My goal is to improve SessionFactory modularity. Thus I have created a Mappings class. This class just hold a set of mapping declarations like this :


    <bean id="firstMappings"...
  16. Replies
    1
    Views
    1,408

    Schema support

    Hi,

    Spring 2.0 will introduce schema based context files : is there any plan to support such declaration in springide in the future ?
    If yes, do you have any idea of a roadmap for that ?

    Thanx...
  17. Replies
    3
    Views
    1,097

    I don't think I have to declare a handler for my...

    I don't think I have to declare a handler for my inner bean isn't it ?

    I have defined a handler for my main bean and it works fine. I am just asking questions about more complex use cases.

    I am...
  18. Replies
    3
    Views
    1,097

    BeanDefinitionParser

    Hi,

    I am playing with NamespaceHandler and BeanDefinitionParser and have some questions about that.
    I have this bean definition


    <bean id="myBean" class="MyClass">
    <constructor-arg...
  19. joris, Do you speed up your startup with your...

    joris,

    Do you speed up your startup with your process ?

    When profiling my startup it seems that configuration parsing is nothing in the overall time (4s on 60) but maybe I am wrong

    seb
  20. Replies
    1
    Views
    1,159

    Setting windows swing look and feel

    How can I with spring rcp set the look and feel to com.sun.java.swing.plaf.windows.WindowsLookAndFeel ?

    I found in the xml file the configuration of the jgoodies laf but it does not seems to have...
  21. I am agree with you that in the case of...

    I am agree with you that in the case of optimistic locking you can manage the exception but :
    - Sometimes the version check is not enough. If the two transactions are really concurent, it is the db...
  22. Sorry but for me this is true if you do...

    Sorry but for me this is true if you do pessimistic locking.

    With optimistic locking, you can have two concurrent users that modify the same object. You can have two behavior in this case :
    - The...
  23. Maybe it is quite an unusual problem. I have...

    Maybe it is quite an unusual problem.
    I have some kind of State object in the database. A lot of different threads call a service that change the properties of this State object (mainly a date). I...
  24. Just a question about synchronization. It...

    Just a question about synchronization.

    It seems difficult for me to use method level synchronization in the service layer because of the programming to interfaces design choice.
    I cannot add the...
  25. Replies
    1
    Views
    845

    It depends on your architecture. The best...

    It depends on your architecture.

    The best practice that Spring promotes is :
    - a DAO layer that encapsulates your data access code. This code could be jdbc with stored procedure in your case.
    -...
Results 1 to 25 of 44
Page 1 of 2 1 2