我按照this tutorial中的说明操作。我遇到了步骤问题:测试连接池和数据源。但是,经过一遍又一遍的步骤,我仍然得到例外:表/视图'CATEGORY'不存在。当我在'services'下检查时,表存在。
我指定的JDBC连接URL是:jdbc:mysql:// localhost:3306 / affablebean?zeroDateTimeBehavior = convertToNull
Netbeans 7.3.1 MySQL Server 5.6 Glassfish Server 4
答案 0 :(得分:5)
“创建数据源的资源引用”的步骤3中的教程中存在错误。
您可以通过在web.xml中更改此行来解决此问题:
<res-type>javax.sql.DataSource</res-type>
到
<res-type>javax.sql.ConnectionPoolDataSource</res-type>
现在应该工作:)