启用Shark的jspClient的步骤
启用Shark的jspClient的步骤
1:配置shark 与mysql连接(详情请见http://blog.csdn.net/kasam/archive/2004/11/12/179094.aspx),在C:/Shark-1.0/JSPClient目录下生成了一个sharkworklisthandler.war的文件。将此文件拷贝到tomcat_home/webapps下。解开该文件,在conf目录下找到Shark.conf,在151行你可能会发现DatabaseManager.DB.sharkdb.JdbcDriver="org.hsqldb.jdbcDriver"DatabaseManager.DB.sharkdb.Connection.Url="jdbc:hsqldb:@@/db/hsql/hsql"
这个说明用configure.bat配置的时候数据库并没有改变过来。(注:其中configure.xml 的157行已经改成<filter token="DB_URL" value="${db_url}"/>了,这个还没有搞清楚。)
2:修改Shark.conf的151行为mysql的驱动
DatabaseManager.DB.sharkdb.JdbcDriver="org.gjt.mm.mysql.Driver"
DatabaseManager.DB.sharkdb.Connection.Url="jdbc:mysql://localhost/shark
3:启动Tomcat 然后在浏览器中输入http://localhost:8080/sharkworklisthandler/就会见到如下画面