spring+MVC整合的时候出错

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring+MVC整合的时候出错相关的知识,希望对你有一定的参考价值。

严重: StandardWrapper.Throwable
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in ServletContext resource [/WEB-INF/hib-config.xml]: BeanPostProcessor before instantiation of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.transaction.config.internalTransactionAdvisor': Cannot create inner bean '(inner bean)' of type [org.springframework.transaction.interceptor.TransactionInterceptor] while setting bean

hib-config.xml中dataSource的部分
<bean id="dataSource"
class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName"
value="com.mysql.jdbc.Driver">
</property>
<property name="url" value="jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8"></property>
<property name="username" value="root"></property>

</bean>

网上搜了半天,有说包冲突的,有说路径错误,都试了都不行,我觉得可能性大的是包的问题,顺便求SpringMVC所用到的jar包

你把url数据库名之后的全去掉试试,包括问号!(只保留”jdbc:mysql://localhost:3306/test“。)追问

恩,试过了还是不行呢

追答

不好意思,没能帮上忙。我记得我学Spring的时候也遇到过Hibernate中的这个错误,你能说说你是怎么解决这个错误的吗?非常感谢!!

参考技术A 肿么没有password追问

password我设置的为空

以上是关于spring+MVC整合的时候出错的主要内容,如果未能解决你的问题,请参考以下文章

SSM 三大框架系列:Spring 5 + Spring MVC 5 + MyBatis 3.5 整合(附源码)

spring mvc mybatis 整合用配置web.xml文件吗

SpringSpring系列7之Spring整合MVC框架

spring mvc mybatis 整合 大体步骤

spring mvc+spring + hibernate 整合

MyBatis+Spring+Spring MVC整合开发