目录
此贴为自我复习使用
1.关于mapper标签问题
① 在mybatis.xml
Caused by: org.springframework.core.NestedIOException: Failed to parse config resource: class path resource [mybatis.xml]; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource com.leyouju.dao.StudentDao.xml
问题分析
是mapper路径报错导致程序不能正常执行
检查StudentDao.xml中的
<mapper namespace="com.leyouju.dao.StudentDao.xml">
无论是.还是/都不行,后查阅相关资料,解决问题
方法如下
在resources目录下的mybatis.xml文件中将mappers resource注释掉
<mappers>
<!--<mapper resource="com.leyouju.dao.StudentDao.xml"/>-->
</mappers>
/**
具体原因为mapper文件路径出错,注释之后成功运行
*/
其他代码详情
StudentDao.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.leyouju.dao.StudentDao.xml">
<insert id="">
insert into student values (#{name},#{email},#{age})
</insert>
<select id="selectStudents" resultType="com.leyouju.domain.Student">
select id,name,email,age from student order by id desc
</select>
</mapper>
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<!--声明数据源DataSource,作用是连接数据库的-->
<bean id="myDataSource" class="com.alibaba.druid.pool.DruidDataSource"
init-method="init" destroy-method="close" >
<!--set输入给DruidDataSource提供连接数据库的信息-->
<property name="url" value="jdbc:mysql://localhost:3306/ssm" /><!--setUrl()-->
<property name="username" value="root" />
<property name="password" value="******" />
<property name="maxActive" value="20" />
</bean>
<!--声明的是mybatis中提供的SqlSessionFactorBean类,这个类创建SqlSessionFactory的-->
<bean init-method="buildSqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!--set注入,把数据库连接池赋给了dataSource属性-->
<property name="dataSource" ref="myDataSource" />
<!--mybatis主配置文件
configLocation属性是Resource类型,读取配置文件的
他的赋值,使用value,指定文件的路径,使用classpath:表示文件的位置
-->
<property name="configLocation" value="classpath:mybatis.xml" />
</bean>
</beans>
1.在<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />标签
问题描述:当有多个接口时,默认会自动加载,而我刚才碰到的问题
Wrong namespace. Expected 'com.leyouju.dao.StudentDao' but found 'com.leyouju.dao.OrderDao'.
问题分析
预期的com.leyouju.dao。 StudentDao',但发现'com.leyouju.dao.OrderDao'。
方法如下
经仔细检查过后,发现OrderDao.xml中的:
<mapper namespace="com.leyouju.dao.StudentDao">
因复制粘贴过来忘记修改路径,导致报错