问题描述
- struts spring mybatis 整合出问题
-
报错:
IOException parsing XML document from ServletContext resource [/applicationContext.xml]; nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/applicationContext.xml]配置文件applicationContext.xml </beans> <!-- 数据库连接池 --> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"> <property name="driverClass" value="com.mysql.jdbc.Driver"/> <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/test" /> <property name="user" value="root" /> <property name="password" value="admin" /> <property name="initialPoolSize" value="10" /> <property name="minPoolSize" value="5" /> <property name="maxPoolSize" value="30" /> <property name="acquireIncrement" value="10" /> <property name="maxIdleTime" value="10" /> <property name="maxStatements" value="0" /> </bean> <!-- 使用spring的会话管理 --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="c3p0dataSource" /> <property name="configLocation" value="classpath:Configuration.xml" /> </bean> <!-- 使用spring的事务管理 --> <bean name="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"></property> </bean>
解决方案
Spring、MyBatis、Struts框架整合的jar
spring-struts-mybatis整合错误集锦
Struts+Spring+Mybatis+Mysql
解决方案二:
貌似是找不到那个applicationContext.xml文件的问题,路径搞错了?
解决方案三:
nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/applicationContext.xml]
文件路径配置有瓿
解决方案四:
看看是不是Configuration.xml这个文件没找到
解决方案五:
文件配置路径不对,你查一下
时间: 2024-10-31 05:21:35