Search:

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

Search: Search took 0.00 seconds.

  1. Thanks.

    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>
    ...
  2. Problems with setting webAppRootKey in web.xml

    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...
  3. Replies
    0
    Views
    809

    Problem Log4jConfigListener & Tomcat

    In web.xml, if I comment out:


    <listener>
    <listener-class>
    org.springframework.web.util.Log4jConfigListener
    </listener-class>
    </listener>
    and then deploy...
  4. Replies
    17
    Views
    75,314

    Hope this helps. Here is my class that extends...

    Hope this helps.

    Here is my class that extends the StoredProcedure class:



    public class CallGetPolicyNumber extends StoredProcedure {
    private static final Log log =...
  5. Replies
    17
    Views
    75,314

    Common approach to stored procedure

    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...
  6. Replies
    5
    Views
    1,190

    Thanks. That fixed it.

    Thanks. That fixed it.
  7. Replies
    5
    Views
    1,190

    Im trying to get an IN OUT parameter as the...

    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...
  8. Replies
    5
    Views
    1,190

    Debugging calling a Stored procedure

    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...
  9. Changed the oracle jdbc driver

    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...
  10. StoredProcedure class and extractReturnedResultSets

    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...
  11. Replies
    5
    Views
    11,750

    Oracle, Spring - JDBC exception

    Im trying to setup a datasource with oracle via spring but getting an exception. Here is my spring context:



    <!-- Datasource Setup -->
    <bean id="dataSource"...
  12. Pls disregard. Got it to work.

    Pls disregard. Got it to work.
  13. Getting business services when the site first loads up

    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...
  14. Thanks dcengija, thats what I thought so I just...

    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...
  15. How to reference a bean from another eclipse project

    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...
Results 1 to 15 of 15