Hi,
Thank you for your response.
The calls to JDBC etc are wrapped by our services, so in my case I don't want to touch it since it works fine all this time. I just want to put extra mediation...
Type: Posts; User: Setya; Keyword(s):
Hi,
Thank you for your response.
The calls to JDBC etc are wrapped by our services, so in my case I don't want to touch it since it works fine all this time. I just want to put extra mediation...
Hi all,
I'm new to Spring Integration and in the process of evaluating it for our apps.
Currently our apps performs queries, updates etc from UI directly to services in business layer. Now I...
Hi,
Thank you for your help so far. I'm considering CTW now.
If it's considered LTW limitation instead of bugs, I think it should be mentioned somewhere in the documentation.
Regards,
...
Hi,
I have opened a bug report here.
Regards,
Setya
Hi,
I'm not using Maven, so I replace the old Spring's Aspectj with latest aspectjweaver.jar but the problem persists.
Thanks,
Setya
Hi,
To reproduce the problem, one can use this Eclipse Project.
Thanks & Regards,
Setya
Hi,
I've also tried to run the test as Ant task from command line (outside Eclipse) and the problem is the same.
Thanks & Regards,
Setya
Hi,
I've also encountered the same problem under condition I've described here:
...
Hi,
I've tried adding more parameters, still the problem persist as long as the entity parameter is there.
Thanks
Hi,
Thank you for your response.
My answer is as follows:
1. No, simply declaring it fails the test.
2. Yes, I've confirmed this multiple times.
3. From Eclipse IDE.
Well, anyone ?
Well, has anyone experienced the problem ? or at least tried the snippet ?
Thanks & Regards,
Setya
Hi all,
I need to inject dependencies into my domain classes, so I use @Configurable as follows:
@Configurable(preConstruction=true,dependencyCheck=true)
@Entity...
Hi,
It seems that using ApplicationContext I have to define BeanPostProcessor declaratively, for programmatically using XmlBeanFactory works fine.
Anyway, basically during testing I need to...
Err, please don't tell me to register the BeanPostProcessor in the context file since I just need it during test so I want to register it programmatically.
Regards,
Setya
Hi all,
I try to register BeanPostProcessor programmatically, but it seems that the bean is never get called. Here's my code
AbstractApplicationContext context = new...
Sorry for not being clear, I was in a hurry.
I mean, when using 2nd code how do you access the value in view's form ?
Regards,
Setya
Hi all,
Using ModelMap is possible to store/retrieve individual field values instead of the whole domain objects ?
So instead of :
Entity entity = new Entity();...
Hi,
I'm using Equinox OSGI framework.
Here's the various scenario :
1. Spring context file and the manifest header are in the fragment bundle, Spring is unable to find it.
2. The manifest...
Hi all,
I have Controller A & Controller B defined using @Controller annotation, Controller A needs to access method in Controller B so obviously I need to get instance of Controller B at runtime,...
Hi all,
I'm newbie in Spring MVC and am using Spring MVC's annotation controller configuration.
I have controller A & B. At runtime controller A redirects to B using 'redirect:' than after...
Hi all,
I'm using Castor to marshall/unmarshall SOAP request/response. Marshalling is OK, but when unmarshalling Castor always throws the following exception:
...
Hi all,
I've specified Spring-Context header in a fragments's Manifest file, but the fragment's host is not Spring-powered, but it seems the fragment's context is not created at runtime. Is it...
Thanks for the correction,
Now it becomes:
public MyFactoryBean extends AbstractFactoryBean
{
private int myValue;
public void setMyValue(int myValue){this.myValue = myValue;}
...
Thanks,
After reading the documentation I create my own FactoryBean implementation:
public MyFactoryBean extends AbstractFactoryBean
{
private int myValue;
private MyBean bean =...