Search:

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

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    434

    This scenario will NOT work as you are forcing...

    This scenario will NOT work as you are forcing spring to load the bean definitions which are not from production environment.

    You might want to include dummy bean in your active profile as a a...
  2. Wrong getter/setter methods.

    You should have following

    public Weapon getSword() {
    return sword;
    }

    public void setSword(Weapon weapon) {
    this.sword = weapon;
    }
  3. Replies
    3
    Views
    531

    Use following [ only for static factory method as...

    Use following [ only for static factory method as per doc ]

    <bean id="foo" class="java.util.concurrent.Executors" factory-method="newCachedThreadPool" />
  4. Replies
    27
    Views
    4,940

    Design Pattern good book

    You can also read 'Head First Design Patterns'. I have read it and its very good book.
  5. Replies
    6
    Views
    1,353

    Is it possible to have one instance of the...

    Is it possible to have one instance of the StoredProcedure and then execute it repeatedly. That way if I have invoke stored proc 1000 times in a loop, I will rather compile it just once and execute...
Results 1 to 5 of 5