ssh框架为什么抛出异常:Cannot create JDBC driver of class '' for connect URL 'jdbc:mysql://localhost:3306/test'?
Struts has detected an unhandled exception:
Messages: |
|
File: | java/sql/DriverManager.java |
Line number: | 278 |
搭建的ssh框架一直出现这个问题,我的数据库明明是连接上的。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"
xmlns:tx="http://www.springframework.org/schema/tx">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="url" value="jdbc:mysql://localhost:3306/test"></property>
<property name="username" value="root"></property>
<property name="password" value="root123@#$"></property>
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLDialect
</prop>
</props>
</property>
<property name="mappingResources">
<list>
<value>po/User.hbm.xml</value>
</list>
</property>
</bean>
<bean id="transactionManager"
class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<tx:annotation-driven transaction-manager="transactionManager" />
<!-- 定义BeanNameAutoProxyCreator-->
<bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
<!-- 指定对满足哪些bean name的bean自动生成业务代理 -->
<property name="beanNames">
<!-- 下面是所有需要自动创建事务代理的bean-->
<list>
<value>userService</value>
</list>
<!-- 此处可增加其他需要自动创建事务代理的bean-->
</property>
<!-- 下面定义BeanNameAutoProxyCreator所需的事务拦截器-->
</bean>
<bean id="userDao"
class="dao.impl.UserDaoImpl" abstract="false"
lazy-init="default" autowire="default">
<property name="sessionFactory">
<ref local="sessionFactory" />
</property>
</bean>
<bean id="userService"
class="service.impl.UserServiceImpl"
abstract="false" lazy-init="default" autowire="default"
>
<property name="userDao">
<ref local="userDao" />
</property>
</bean>
</beans>
求大家告诉我这是个什么情况,要疯。谢谢
- 等 最代码怎么获取牛币啊?
- 完 谁来告诉我最代码上线的时间,答对者给5牛币,先来先得
- 等 牛友们,大家好,你们做程序员多久了?现在还好吗?
- 完 在微信打开的页面里进行app下载
- 等 最代码2014年欢乐聚声会
- 完 mysql如何查询表数据并且对3个字段降序的SQL?
- 完 最代码牛币机制改革
- 完 成功的在bae上使用了自定义运行环境 jetty+nginx的组合,大家对jetty+nginx优化有哪些心得?
- 完 进来分享一下各位牛牛是如何加入最代码大家庭的?
- 等 为什么java BufferedImage类处理大图直接抛出内存溢出的异常?
- 等 最代码是否开发手机app客户端?
- 完 java程序员学习哪些java的技术?java有哪些框架?都能做哪方面的开发?
- 等 php格式网页文件怎么运行?
- 等 Java volatile值获取的问题
- 等 前端vue,拦截了登录后台后,返回的token,requests拦截token,但是发送请求的时候,就出现跨越异常
- 等 大专本科计算机科班怎么找到Java工作?
- 等 eclipse怎么把三个java swing游戏项目合成一个项目?
- 完 伙伴们,大家都有什么好的解压方式么,分享一下~
- 完 三四线城市,6、7k,运维工作,索然无味,想去辞职上培训,各位牛牛有什么建议嘛
- 等 jsp页面输入中文变成问号
- 等 JPA在线上运行一段时间后报错Caused by: java.lang.IncompatibleClassChangeError: null
- 等 PHP 这个规则用preg_match_all怎么写
- 等 大佬们,有没有知道Alfresco如何配置LDAP登录呢?
- 等 php的install目录是框架带的吗?
- 等 SSH框架如何开发实现验证码功能?
- 等 ssh开发毕业论文项目后台管理系统可以有什么功能实现?
- 等 ssh用户重复登录问题
- 等 ssh怎么配置一级缓存或者二级缓存?
- 等 ssh如何上传图片到数据库?
- 完 SSH整合报错问题求解
- 等 ssh框架-spring整合hibernate为什么一直报‘hibernate.dialect' must be set when no Connection avalable的错误?
- 完 SSH整合从哪里开始学习写code?求助各位大神,小神 。能够详细描述下
- 等 SSH框架如何配置c3p0连接到SQL2005数据库?
- 等 ssh框架增删改查时为什么新增extends ActionSupport的方法找不到?
- 等 SSH和JFINAL做java web项目开发使用哪个好啊?
- 完 myeclipse下运行一个java ssh项目为什么提示不支持项目构面hibernate v3.1?