Thanks. Actually, the value that I put in the context param can be retrieved by doing the same System.getProperty() call. For example,
<context-param>
...
Type: Posts; User: jakim8915; Keyword(s):
Thanks. Actually, the value that I put in the context param can be retrieved by doing the same System.getProperty() call. For example,
<context-param>
...
Im having issues with deploying more than 1 spring driven application on Tomcat/OC4J. I've read in some article that I need to set webAppRootKey in my web.xml but when I try to retrieve that value...
In web.xml, if I comment out:
<listener>
<listener-class>
org.springframework.web.util.Log4jConfigListener
</listener-class>
</listener>
and then deploy...
Hope this helps.
Here is my class that extends the StoredProcedure class:
public class CallGetPolicyNumber extends StoredProcedure {
private static final Log log =...
What is the common approach to using a stored procedure within a spring & hibernate mix?
This is what Im currently implementing and just wanted some general feedback:
1) I implemented a class...
Thanks. That fixed it.
Im trying to get an IN OUT parameter as the result. Here are the declared parameters:
private static final String STORED_PROC_NAME = "dbproc_get_policy_number";
public...
I implemented a class that extends the StoredProcedure class.
Is there a way I can test that my code actually is calling the stored procedure and retrieve the actual message returned by the stored...
I downloaded another driver from oracle site:
http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html
I think what was happening was I had an oracle jdbc driver located with my...
Im not sure what Im doing wrong and any help is appreciated. Im trying to test a stored procedure to retrieve a string value but it seems to be looping and spitting out:
[2005-11-03...
Im trying to setup a datasource with oracle via spring but getting an exception. Here is my spring context:
<!-- Datasource Setup -->
<bean id="dataSource"...
Pls disregard. Got it to work.
I've been able to retrieve the business service objects from the spring context using Struts via struts action. However, I also need to be able to use the business service objects when I first load...
Thanks dcengija, thats what I thought so I just packaged the java project in a jar and placed it in my WEB-INF\lib folder and it works. I know I have MyEclipse setup properly because I can reference...
I have 2 projects (one struts project and a java project to contain my DAOs and business logic in eclipse). In my Struts project, I've setup my spring context to refer to beans within the same...