JDBC URL in tomcat 9 context.xml for treeAnno 的问题

Problems with JDBC URL in tomcat 9 context.xml for treeAnno

我在服务器 (Ubuntu 18.04) 上安装了全新的 tomcat 9。我正在尝试设置 treeanno (https://github.com/nilsreiter/treeanno/releases) 并部署 github 存储库中提供的 Web 应用程序存档 (war)。 我使用 tomcat 管理器应用程序来部署 war 文件,并按照此描述配置 tomcat 以使用相应的数据库资源:https://github.com/nilsreiter/treeanno/blob/master/INSTALL.md。 根据粗略的描述,应该在tomcat安装的context.xml中添加:

<Resource name="treeanno/jdbc" auth="Container" type="javax.sql.DataSource"
           maxActive="100" maxIdle="30" maxWait="10000"
           username="USERNAME" password="PASSWORD" driverClassName="com.mysql.jdbc.Driver"
           url="DATABASE URL"/>

由于我是 tomcat 的新手,我不清楚需要设置哪些属性,尤其是 "url"。 如果我尝试访问应用程序,我会收到以下错误,指出无法建立数据库连接,因为 url 不够:

    Type Exception Report

    Message An exception occurred processing [/index.jsp] at line [12]

    Description The server encountered an unexpected condition that prevented it from fulfilling the request.

Exception

org.apache.jasper.JasperException: An exception occurred processing [/index.jsp] at line [12]

9:      doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
10:         doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
11:         omit-xml-declaration="false" />
12: <sql:query var="rs" dataSource="treeanno/jdbc" sql="select id, username from treeanno_users">
13: </sql:query>
14: <html xmlns="http://www.w3.org/1999/xhtml">
15: <head>


Stacktrace:
    org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:626)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:500)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
    org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)

Root Cause

javax.servlet.ServletException: javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: Cannot create JDBC driver of class 'com.mysql.jdbc.Driver' for connect URL 'jdbc:mysql:3306'"
    org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:666)
    org.apache.jsp.index_jsp._jspService(index_jsp.java:270)
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:477)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
    org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)

Root Cause

javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: Cannot create JDBC driver of class 'com.mysql.jdbc.Driver' for connect URL 'jdbc:mysql:3306'"
    org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:285)
    org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doStartTag(QueryTagSupport.java:168)
    org.apache.jsp.index_jsp._jspx_meth_sql_005fquery_005f0(index_jsp.java:296)
    org.apache.jsp.index_jsp._jspService(index_jsp.java:134)
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:477)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:385)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:329)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:741)
    org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)

我已经知道 url 应该 link 到数据库服务器,包括密码和用户,但这似乎不适合这个配置文件。

以下是我在这里找到的 (https://ci.apache.org/projects/tomcat/tomcat9/docs/jndi-datasource-examples-howto.html):

url=jdbc:mysql://localhost:3306/javatest"/

但调整端口等不起作用: url=jdbc:mysql://localhost:8080/TreeAnno-1.0.2"/

现在,我需要如何制定 url 以允许应用程序连接到/启动 MySQL 数据库?

有多种方法可以为 Tomcat 托管的 Web 应用程序配置 JDBC 数据连接。

Tomcat

中的 JNDI 连接

在您的笔记中,您描述了如何使用添加到 Tomcat context.xml 文件的 Tomcat Resource 条目。当我使用这种方法时,我还在我的 Web 应用程序的 web.xml 文件中添加了一个条目,它引用了 Resource 条目。例如:

<resource-ref>
    <res-ref-name>treeanno/jdbc</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
</resource-ref>

请注意我的 web.xml 文件中的资源引用名称如何与 Resource 名称匹配。

完成后,我现在可以在我的应用程序的 Java 代码中引用该数据源,如下所示:

// ABSOLUTELY NOT PRODUCTION-READY CODE! JUST FOR TESTING!

import javax.naming.Context;
import javax.naming.InitialContext;
import javax.sql.DataSource;

...

Context initialContext = new InitialContext();
Context context = (Context) initialContext.lookup("java:comp/env");
DataSource ds = (DataSource) context.lookup("treeanno/jdbc");

java:comp/env 有什么作用? See here.

但首先测试你的 URL

在进入上述配置之前,您可能需要独立确保您拥有正确的 JDBC 连接 URL(以及用户和密码)。

如果你有错误URL,或者数据源不可用等,再多的修补也无济于事

如何测试?多种方式——例如:

使用 DBeaver 等工具。这将要求 URL、用户和密码以连接到 MySQL。

或者编写一个单独的独立 Java 应用程序(带有 main 方法)和一个基本的 JDBC connection.

或任何其他仅关注 MySQL 连接细节的方式,而不是 Tomcat 配置复杂性。

正如@CHN 指出的那样:如果您没有 mysql JDBC jar 文件,这一切都没有实际意义。

就像我说的,这只是完成工作的一种方法 - 但它对我有用。

首先,如果您熟悉MySQL (Or install with docker,则需要安装。

在安装过程中,我记得它会要求您设置 root 的密码(这是默认用户名)。安装后,create a new database

假设您将数据库命名为 foocontext.xml 中的 <Resource/> 应该更新为:

<Resource name="treeanno/jdbc" auth="Container" type="javax.sql.DataSource"
           maxActive="100" maxIdle="30" maxWait="10000"
           username="root" password="passwordOfTheRoot" driverClassName="com.mysql.jdbc.Driver"
           url="jdbc:mysql://localhost:3306/foo"/>

然后下载MySQL JDBC driver, and put it inside the $TOMCAT_ROOT_FOLDER/lib .Then restart Tomcat and I believe the application will then connect to the foo database and create the tables for you.