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...
Type: Posts; User: scesbron; Keyword(s):
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...
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...
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...
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...
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
...
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...
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...
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) {...
Here is the code, OpenBeanFactory really does nothing more than add some logging :
package com.bodet.context;
import org.springframework.beans.factory.BeanCreationException;
import...
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...
Here is my workaround
To enable exception translation with hibernate I have my own daosupport class like this :
public class BodetDaoSupport extends HibernateDaoSupport
{
protected...
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...
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...
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...
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"...
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...
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...
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...
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
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...
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...
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...
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...
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...
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.
-...