错误: - 无法加载JDBC驱动程序类' com.mysql.jdbc.Driver'

时间:2016-12-12 14:33:53

标签: tomcat



<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>Garage</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <resource-ref>
 <description>GarageDB Datasource</description>
  <res-ref-name>jdbc/garage</res-ref-name>
  <res-type>javax.sql.DataSource</res-type>
  <res-auth>Container</res-auth>
</resource-ref>
  <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
  </servlet-mapping>
  <context-param>
    <description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
  </context-param>
  <context-param>
    <param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
    <param-value>resources.application</param-value>
  </context-param>
  <listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
  </listener>
</web-app>
&#13;
&#13;
&#13;

我无法解决此错误。我已经附加了一个链接到我的github和文件。请帮忙。click here for the link。我正在使用tomcat 9.0版并使用wampserver尝试修复此错误,我已经导入了java sql转换器mysql-connector-java-5.1.40-bin。

2 个答案:

答案 0 :(得分:0)

制作“mssql-connector-java”jar文件的副本,将其粘贴到当前项目的“lib”文件夹中(即存在于webcontent&gt; WEBINF&gt; lib中),然后重新运行该应用程序。

答案 1 :(得分:0)

尝试将您的jar文件放在tomcat服务器目录中 - 如果您使用的是Windows,那么: C:\ Program Files \ Apache Software Foundation \ Tomcat 9.0 \ lib ,不要忘记重启服务器。