碰见了一个问题,一直无法解决,希望大家帮帮忙。

这是连接mysql的JdbcUtils代码:

public class JdbcUtils {

// 配置文件

private static Properties props = null;

// 静态块保证只加载一次

static {

InputStream in = JdbcUtils.class.getClassLoader().getResourceAsStream(

"dbconfig.properties");

props = new Properties();

try {

props.load(in);

} catch (IOException e) {

System.out.println("加载配置文件失败!");

throw new RuntimeException(e);

}

try {

Class.forName(props.getProperty("driverClassName"));

} catch (ClassNotFoundException e) {

System.out.println("驱动类加载失败");

throw new RuntimeException(e);

}

}

public static Connection getConnection() throws SQLException {

return DriverManager.getConnection(props.getProperty("url"),

props.getProperty("username"), props.getProperty("password"));

}

}

用下面的这个测试类证明jdbcutilis没有问题,可以加载com.mysql.jdbc.Driver

public class TestJDBCUserDao {

@Test

public void test (){

UserDao ud = UserDaoFactory.getUserDao("mysql");

User user = new User();

user = ud.findByName("111");

System.out.println(user.getPassword());

}

}

UserDao的jindByName是为了获得数据库连接:

项目也已经引入数据库驱动包,如图:

但当用tomcat跑时提示错误:

错误提示,驱动类加载失败,也就是:java.lang.ClassNotFoundException: com.mysql.jdbc.Driver,如图:

idea mysql错误提示_idea提示错误:java.lang.ClassNotFoundException: com.mysql.jdbc.Driver相关推荐

  1. Idea运行web项目时,提示java.lang.ClassNotFoundException: com.mysql.jdbc.Driver解决方法

    Idea运行web项目时,提示java.lang.ClassNotFoundException: com.mysql.jdbc.Driver解决方法 参考文章: (1)Idea运行web项目时,提示j ...

  2. 错误:“java.lang.ClassNotFoundException: com.mysql.jdbc.Driver“ 如何解决?

    --运行项目时遇到 java.lang.ClassNotFoundException: com.mysql.jdbc.Driver 问题,解决方案: 错误如下: java.lang.ClassNotF ...

  3. java.lang.ClassNotFoundException: com.mysql.jdbc.Driver 解决方法 java.lang.ClassNotFoundException: com.

    java.lang.ClassNotFoundException: com.mysql.jdbc.Driver 解决方法 java.lang.ClassNotFoundException: com.m ...

  4. jsp项目中连接数据库解决java.lang.ClassNotFoundException: com.mysql.jdbc.Driver的问题

    jsp项目中连接数据库解决java.lang.ClassNotFoundException: com.mysql.jdbc.Driver的问题 参考文章: (1)jsp项目中连接数据库解决java.l ...

  5. pyspark报错java.lang.ClassNotFoundException: com.mysql.cj.jdbc.Driver

    完整报错如下: Traceback (most recent call last):File "<stdin>", line 6, in <module>F ...

  6. IDEA导入MySQL的jdbc驱动出现“java.lang.ClassNotFoundException: com.mysql.cj.jdbc.Driver”

    目录 一.一般的解决思路 1.JDBC下载链接 2.选择下载内容,并进行下载 3.将驱动导入java项目 二.依然导入驱动失败怎么办 当我们在idea中使用java操作mysql数据库时会出现: Ex ...

  7. 解决maven项目jdbc报错:java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

    博主使用flink连接数据库时报错,完整报错是:switched from INITIALIZING to FAILED with failure cause: java.lang.ClassNotF ...

  8. java.lang.ClassNotFoundException: com.mysql.cj.jdbc.Driver 确认配置\版本都没问题,那么你就差最后一步

    java.lang.ClassNotFoundException: com.mysql.cj.jdbc.Driver url\driverClassName 都没问题且jar包导入正确符合对应mysq ...

  9. 报错:java.lang.ClassNotFoundException: com.mysql.cj.jdbc.Driver at java.base/jdk.internal.loader.Bui

    前言必读 读者手册(必读)_云边的快乐猫的博客-CSDN博客 一.遇到问题 : java.lang.ClassNotFoundException: com.mysql.cj.jdbc.Driver   ...

最新文章

  1. 学 Python 必看书单汇总
  2. java读取文件效率问题
  3. 吉林大学计算机科学与技术学院推免,2017吉林大学计算机科学与技术大学生推免夏令营...
  4. 正式进驻1410实验室!
  5. vue.config.js配置
  6. c语言中for中声明变量,C中for循环中的变量重新声明
  7. 传统的6d位姿估计fangfa1_你的厨房被水淹了!别担心,这只是3D深度估计做出的特效...
  8. 抛弃鼠标的神器——Vimium
  9. 数据结构之图:加权无向图与寻找最小生成树,Python——27
  10. 微课|玩转Python轻松过二级(2.4节):常用内置函数用法精要4
  11. [转]-Sublime Text 3最好的功能、插件和设置
  12. Jquery第二章appendTo方法到方法的使用练习第二节
  13. Altium Designer(七):3D模型
  14. 2018美国大学计算机科学,美国大学计算机2018最新排名
  15. 腾讯云内容分发网络 CDN 产品认证课程笔记(三)——腾讯云CDN操作指引
  16. 利用Vue制作一个简单的走马灯
  17. CLSR 11.2散列表
  18. 武汉的二本计算机学校有哪些,武汉二本大学有哪些学校
  19. SpringBoot整合thymeleaf及常用th:标签使用方法
  20. 高一英语计算机课文翻译,高一必修2英语课文翻译之《WHO AM I? 》

热门文章

  1. 关于Java基础你不得不会的34个问题
  2. JSON.stringify转换Date不正确的解決方法
  3. Snipaste在Window运行后遇到提示计算机中丢失 api-ms-win-crt-runtime-l1-1-0.dll 错误
  4. 使用IPFS集群搭建创建私有IPFS网络
  5. 玩玩机器学习3——TensorFlow基础之Session基本运算、占位符和变量的使用
  6. extern “C“解决链接问题
  7. Linux版本tomcat下载及安装
  8. python3字符串转数字_Python3基础语法和基本数据类型
  9. php统计用户留存脚本,SQL 统计用户留存
  10. docker公共存储库_查找并修复docker镜像安全漏洞