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...
Type: Posts; User: upenderc; Keyword(s):
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...
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...
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...
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...
What is the scope of your application? the datasource selection depends on your application scope . You can use apache common dbcp.
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...
You have to add commons-logging.jar or log4j.jar file into your classpath
Yes it works
try this way.
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Bean;...
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...
not this line.
can you post your .xml file spring3helloworld class
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...