Search:

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

Search: Search took 0.03 seconds.

  1. thank you for reply. My application works based...

    thank you for reply. My application works based on version number, I have base table call VERSION and it has child table CONFIGURATION. when i want work new version I am taking existing Version and...
  2. make your service project jar file and copy into...

    make your service project jar file and copy into you WEB-INF/lib folder, and copy all spring bean xml file from service into WEB-INF/classes or classpath and configure context lister in web.xml file...
  3. saving child records in single transaction taking time

    I have paret and child relation ship tables like Dept, and Emp table. I am using Hibernate. But here I am creating one new Dept record with 60000 employees. when save this information into database...
  4. StroedProcedure not sending in out parameter

    I am facing a problem where my procedure has in out parameter. This procedure written in oracle. ie.
    create or replace procedure test (id in number, salary in out number) as
    begin
    ....
    end

    If...
  5. What is the scope of your application? the...

    What is the scope of your application? the datasource selection depends on your application scope . You can use apache common dbcp.
  6. How do I forward already Authenticated Info another Web Application

    I have two web application and implemented spring security 3.0. User work with A application and this application has button. When he hit this button it call B application but B application again...
  7. Replies
    6
    Views
    766

    You have to add commons-logging.jar or log4j.jar...

    You have to add commons-logging.jar or log4j.jar file into your classpath
  8. Yes it works

    Yes it works
  9. try this way. import...

    try this way.

    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.beans.factory.annotation.Qualifier;
    import org.springframework.context.annotation.Bean;...
  10. Replies
    6
    Views
    766

    where is your xml bean file located?. if this...

    where is your xml bean file located?. if this xml bean file is located inside package folder you have to give like this
    XmlBeanFactory facotry = new XmlBeanFactory(new...
  11. Replies
    6
    Views
    766

    not this line.

    not this line.
  12. Replies
    6
    Views
    766

    can you post your .xml file spring3helloworld...

    can you post your .xml file spring3helloworld class
  13. Replies
    10
    Views
    9,391

    I approached the following way. If it is useful...

    I approached the following way. If it is useful you can use it.

    package com.demo.storedprocedure
    import java.util.Map;
    public class CallStoredProcedure {

    private static...
Results 1 to 13 of 13