File: release-notes-1.2.1.xml

package info (click to toggle)
libcommons-dbcp-java 1.2.1-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,424 kB
  • ctags: 1,855
  • sloc: java: 9,299; xml: 1,210; makefile: 12
file content (59 lines) | stat: -rw-r--r-- 2,286 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0"?>
<!--
   Copyright 2003-2004 The Apache Software Foundation

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
-->
<document>
   <properties>
      <title>Release notes for Commons-DBCP 1.2.1</title>
      <author email="commons-dev@jakarta.apache.org">Commons Documentation Team</author>
      <revision>$Id: release-notes-1.2.1.xml,v 1.1 2004/06/12 13:25:56 dirkv Exp $</revision>
   </properties>

   <body>
     <section name="Release notes for Commons-DBCP 1.2.1">
<p>
<b>NOTE:</b> DBCP v1.2.1 requires Pool v1.2, make sure you use the correct version!
</p>

<hr/>
<p>DBCP 1.2.1 is a maintenance release to restore full JDK 1.3 compatibility.</p>
<p>The problem lies in the improper use of a JDK 1.4 method: java.lang.Boolean.valueOf(boolean)</p>
<p>This method was used in the defaultReadOnly property processing.</p>
<p>We recommend to upgrade to DBCP 1.2.1 to avoid this problem altogether.</p>
<hr/>

<p>If you use the defaultReadOnly property in a JRE &lt;1.4, you will get the following error:
<source>
java.lang.NoSuchMethodError
	at org.apache.commons.dbcp.BasicDataSource.setDefaultReadOnly(BasicDataSource.java:75)
	at org.apache.commons.dbcp.BasicDataSourceFactory.createDataSource(BasicDataSourceFactory.java:162)
	at org.apache.commons.dbcp.BasicDataSourceFactory.getObjectInstance(BasicDataSourceFactory.java:144)
	at org.apache.naming.factory.ResourceFactory.getObjectInstance(ResourceFactory.java:176)
</source>
</p>

<p>The simple workaround is not to use this property. For example remove the following from the tomcat config.xml.
<source><![CDATA[
<parameter>
    <name>defaultReadOnly</name>
    <value>true</value>
</parameter>
]]></source>
</p>

</section>
</body>
</document>