小弟严格按照jive安装向导进行了配置,当运行到~/jive/admin/setup/setup3.jsp的时候出现HTTP Status 500的错误
具体错误信息如下
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: Unable to compile class for JSP:
An error occurred at line: 319 in the jsp file: /admin/setup/setup3.jsp
The type Statement is ambiguous
316: else {
317: // See if the Jive db schema is installed.
318: try {
319: Statement stmt = con.createStatement();
320: // Pick an arbitrary table to see if it's there.
321: stmt.executeQuery("SELECT * FROM jiveID");
322: stmt.close();
原因应该是数据库没连上,可能是我配置mysql的驱动程序的时候除了点问题,关于这点在安装向导上是这么说的
In the Jive setup tool, use the following values:
driver: org.gjt.mm.mysql.Driver
server: jdbc:mysql://[YOUR_HOST]/[DATABSE_NAME]
where [YOUR_HOST] and [DATABASE_NAME] are the actual values for you server. In many cases localhost is a suitable value for [YOUR_HOST] when your database is running on the same server as your webserver.
可是我找不到Jive setup tool在哪啊,这里的
driver: org.gjt.mm.mysql.Driver
server: jdbc:mysql://[YOUR_HOST]/[DATABSE_NAME]
这些值在哪些地方修改呢,小弟读刚读大三,第一次用mysql,所以很菜,希望高手指点一二,谢谢了