Search:

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

Search: Search took 0.01 seconds.

  1. when the DB connection is borrowed from pool, and when it is returned to pool?

    the scenario is:
    the code structure is:


    package com.job.service;

    public interface JobManager{
    void insertJob(Job job);
    Job findJob(String jobID);
    }
  2. Maybe this is a bug in code of RollbackRuleAt.java for "no-rollback-for"

    here is my application.xml


    <tx:advice id="txBizAdvice" transaction-manager="transactionManager">
    <tx:attributes>
    <tx:method name="testTransaction" propagation="REQUIRED"
    ...
  3. How to configure multi-quartz-jobs in one application.xml file?

    Hi, my case like below:

    One application, several components, each component has a individual spring config file named application-comonentName.xml, some of compoments have quartz job in the...
  4. Spring 1.2.x+iBATIS1.2.x,how to handle the BatchUpate?

    My case is:

    one service will invoke two DAOs to insert thousands records to two Oracle tables, the code of the DAO like below:




    pubic void excuteBatch(String sqlKey, List infoList,...
  5. Replies
    1
    Views
    959

    How to inject a common bean in a servlet?

    Spring 2.x

    my web application required a Servlet which should be loaded when the web application starting, and this Servlet needs the a business bean which defined in context.xml.

    Thanks.
  6. Replies
    8
    Views
    1,104

    try to use ApplicationContext....

    try to use ApplicationContext....
  7. what' your meaning? do you want the log process...

    what' your meaning?
    do you want the log process don't rollback even if the business service throws a Exception(business service rollbacks)?
  8. Replies
    3
    Views
    1,814

    what's your meaning? if you want to send a...

    what's your meaning?

    if you want to send a email before or after the service method is invoked, you need to write a BeforeAdvice or AfterAdvice. you can invoke the EmailSender to send email in...
  9. I have resolved this problem by BeanPostProcessor.

    I have resolved this problem by BeanPostProcessor.
  10. BeanCurrentlyInCreationException when if use AOP in Spring 2..0.7

    Spring 2.0.7....

    I have business logic ClasssA and ClassB, they are circular reference, but I'm not to use constructor injection and stick to setter injection only.

    If I add the <aop:config>...
Results 1 to 10 of 10