Search:

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

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Hi, Thank you for your response. The calls...

    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...
  2. Using SI to decouple presentation and business layer

    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...
  3. Replies
    16
    Views
    1,642

    Hi, Thank you for your help so far. I'm...

    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,
    ...
  4. Replies
    16
    Views
    1,642

    Hi, I have opened a bug report here...

    Hi,

    I have opened a bug report here.

    Regards,

    Setya
  5. Replies
    16
    Views
    1,642

    Hi, I'm not using Maven, so I replace the old...

    Hi,

    I'm not using Maven, so I replace the old Spring's Aspectj with latest aspectjweaver.jar but the problem persists.

    Thanks,

    Setya
  6. Replies
    16
    Views
    1,642

    Hi, To reproduce the problem, one can use this...

    Hi,

    To reproduce the problem, one can use this Eclipse Project.

    Thanks & Regards,

    Setya
  7. Replies
    16
    Views
    1,642

    Hi, I've also tried to run the test as Ant...

    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
  8. Replies
    16
    Views
    1,642

    Hi, I've also encountered the same problem...

    Hi,

    I've also encountered the same problem under condition I've described here:
    ...
  9. Replies
    16
    Views
    1,642

    Hi, I've tried adding more parameters, still...

    Hi,

    I've tried adding more parameters, still the problem persist as long as the entity parameter is there.

    Thanks
  10. Replies
    16
    Views
    1,642

    Hi, Thank you for your response. My answer...

    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.
  11. Replies
    16
    Views
    1,642

    Well, anyone ?

    Well, anyone ?
  12. Replies
    16
    Views
    1,642

    Well, has anyone experienced the problem ? or at...

    Well, has anyone experienced the problem ? or at least tried the snippet ?

    Thanks & Regards,

    Setya
  13. Replies
    16
    Views
    1,642

    Strange problem with @Configurable

    Hi all,

    I need to inject dependencies into my domain classes, so I use @Configurable as follows:



    @Configurable(preConstruction=true,dependencyCheck=true)
    @Entity...
  14. Hi, It seems that using ApplicationContext I...

    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...
  15. Err, please don't tell me to register the...

    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
  16. How to register BeanPostProcessor programmatically ?

    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...
  17. Replies
    4
    Views
    573

    Sorry for not being clear, I was in a hurry. I...

    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
  18. Replies
    4
    Views
    573

    ModelMap to store individual field values

    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();...
  19. Replies
    5
    Views
    1,494

    Spring-powered fragments

    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...
  20. Invoking method defined in other controller instance

    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,...
  21. Replies
    0
    Views
    617

    Passing model object between controllers

    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...
  22. Problem using Castor to unmarshall SOAP response

    Hi all,

    I'm using Castor to marshall/unmarshall SOAP request/response. Marshalling is OK, but when unmarshalling Castor always throws the following exception:


    ...
  23. Replies
    5
    Views
    1,494

    Spring-powered fragments

    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...
  24. Thanks for the correction, Now it becomes: ...

    Thanks for the correction,

    Now it becomes:

    public MyFactoryBean extends AbstractFactoryBean
    {
    private int myValue;

    public void setMyValue(int myValue){this.myValue = myValue;}
    ...
  25. Thanks, After reading the documentation I...

    Thanks,

    After reading the documentation I create my own FactoryBean implementation:

    public MyFactoryBean extends AbstractFactoryBean
    {
    private int myValue;
    private MyBean bean =...
Results 1 to 25 of 48
Page 1 of 2 1 2