1

如何设置这些参数:http ://commons.apache.org/proper/commons-pool/api-1.2/org/apache/commons/pool/impl/GenericKeyedObjectPoolFactory.html

我已经实现了一个池,现在我想配置各种参数[主要使用 bean],但不知道这些参数在哪里调用,似乎没有 getter 或 setter

4

1 回答 1

1

您将使用构造函数参数。这是从 Spring 文档中提取的示例:

<bean id="exampleBean" class="examples.ExampleBean">
  <constructor-arg><ref bean="anotherExampleBean"/></constructor-arg>
  <constructor-arg><ref bean="yetAnotherBean"/></constructor-arg>
  <constructor-arg type="int"><value>1</value></constructor-arg>
</bean>
于 2013-09-13T19:09:52.610 回答