美文网首页
Could not open JDBC Connection f

Could not open JDBC Connection f

作者: Audience0 | 来源:发表于2018-12-11 20:50 被阅读0次

    异常详情:

    Could not open JDBC Connection for transaction; nested exception is org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (Communications link failure

    The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.)

    检查:

    1.检查网络

    2.检查账号密码配置

    3.检查数据库连接数

    4.检查相关jar包,本次 javassist 由3.15.0-GA 升至 3.18.0GA 解决该问题。

    MySql驱动包

        mysql-connector-java-5.1.7-bin.jar

    MyBatis的核心包和依赖包

        mybatis-3.2.7.jar(核心包)

        asm-3.3.1.jar(依赖包)

        cglib-2.2.2.jar(依赖包)

        commons-logging-1.1.1.jar(依赖包)

        javassist-3.17.1-GA.jar(依赖包)

        log4j-1.2.17.jar(依赖包)

        log4j-api-2.0-rc1.jar(依赖包)

        log4j-core-2.0-rc1.jar(依赖包)

        slf4j-api-1.7.5.jar(依赖包)

        slf4j-log4j12-1.7.5.jar(依赖包)

    MyBatis和Spring的整合包

        mybatis-spring-1.2.2.jar

    Spring的包

        spring-aop-3.2.0.RELEASE.jar

            包含在应用中使用spring的aop特性时所需的类。

        spring-aspects-3.2.0.RELEASE.jar

            AspectJ是一个面向切面的框架,这个jar提供对AspectJ的支持,以便可以方便的集成面向切面编程

        spring-beans-3.2.0.RELEASE.jar

            springIoC(依赖注入)的基础实现,所有应用都要用到的,它包含访问配置文件、创建和管理bean以及进行Inversion of Control / Dependency Injection(IoC/DI)操作相关的所有类。起支撑作用的。

        spring-context-3.2.0.RELEASE.jar

            为spring核心提供了大量扩展。可以找到使用spring applicationcontext特性时所需的全部类,jdni所需的全部类,ui方面的用来与模板(templating)引擎如 velocity、freemarker、jasperreports集成的类,以及校验validation方面的相关类,还有ejb,cache,format,jms等等。

        spring-context-support-3.2.0.RELEASE.jar

            spring-context 的扩展支持,用于 MVC 方面

        spring-core-3.2.0.RELEASE.jar

            spring的核心包,包含Spring框架基本的核心工具类,Spring其它组件要都要使用到这个包里的类,是其它组件的基本核心。包括ASM,CGLIB以及相关的工具类

        spring-expression-3.2.0.RELEASE.jar

            spring表达式语言。

        spring-jdbc-3.2.0.RELEASE.jar

            spring对jdbc的简单封装

        spring-orm-3.2.0.RELEASE.jar

            包含spring对dao特性集进行了扩展,使其支持 ibatis、jdo、ojb、toplink,因为hibernate已经独立成包了,现在不包含在这个包里了。这个jar文件里大部分的类都要依赖spring-dao.jar里的类,用这个包时你需要同时包含spring-dao.jar包。spring 整合第三方的 orm 映射支持,如 hibernate 、ibatis、jdo 以及spring的jpa的支持

        spring-test-3.2.0.RELEASE.jar

        spring-tx-3.2.0.RELEASE.jar

            spring提供对事务的支持,事务的相关处理以及实现类就在这个Jar包中

        spring-web-3.2.0.RELEASE.jar

            包含web应用开发时,用到spring框架时所需的核心类,包括自动载入webapplicationcontext特性的类、struts与jsf集成类、文件上传的支持类、filter类和大量工具辅助类。

        spring-webmvc-3.2.0.RELEASE.jar

            spring mvc相关,实现springmvc的操作。

    dbcp数据库连接池的包

        commons-dbcp-1.2.2.jar

        commons-pool-1.3.jar

    相关文章

      网友评论

          本文标题:Could not open JDBC Connection f

          本文链接:https://www.haomeiwen.com/subject/zqfyhqtx.html