Ch 13 p 484 missing <ResourceParams> opening tag
Took some time to realize an opening tag was missing in the code to be included in the server.xml file.
...
<Resource name="jdbc/BooksDB" auth="Container" type="javax.sql.DataSource"/>
<parameter>
...
should be
...
<Resource name="jdbc/BooksDB" auth="Container" type="javax.sql.DataSource"/>
<ResourceParams name="jdbc/BooksDB" >
<parameter>
...
Why is there no no errata of this book to be found?
|