Mybatis级联查询(个人总结 如有不懂 自己去了解 加深印象 我反正运行出来了)

1、数据库中建表

course表和Teacher表

在course表中添加外键

2、数据库中的表对应的实体类(eclipse中)

有了对应的属性后,get set方法直接 alt+S 自动生成  然后生成字符串(不懂自动生成的自己查 很多相关资料)

记得在Course表中要加入Teacher 

3、编写映射文件

4、接口文件

5、Service

6、ServiceImpl

7、测试类(在src下创建一个类)

applicationContext.xml配置文件 数据库url记得换成自己的

<?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:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx.xsd">
        
    <!--1. 配置数据源 -->
    <bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource">
            <property name="driverClassName" value="com.mysql.jdbc.Driver" />
            <property name="url" value="jdbc:mysql://localhost/school?useUnicode=true&amp;characterEncoding=UTF-8&amp;tinyInt1isBit=false&amp;useSSL=false" />
            <property name="username" value="root" />
            <property name="password" value="902118" />
            <!-- 最大连接数 -->
            <property name="maxTotal" value="30"/>
            <!-- 最大空闲连接数 -->
            <property name="maxIdle" value="10"/>
            <!-- 初始化连接数 -->
            <property name="initialSize" value="5"/>
    </bean>
    
  <!--2. 配置MyBatis工厂,mybatis的SqlSession的工厂SqlSessionFactoryBean,同时指定数据源 dataSource:引用数据源MyBatis定义数据源,同意加载配置 -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"></property>
        <property name="configLocation" value="classpath:config/mybatis-config.xml" /> 
    </bean>

  <!--3. mybatis自动扫描加载Sql映射文件/接口 : MapperScannerConfigurer sqlSessionFactory
        basePackage:指定sql映射文件/接口所在的包(自动扫描)   -->
    <!--Mapper代理开发,使用Spring自动扫描MyBatis的接口并装配
     (Spring将指定包中所有被@Mapper注解标注的接口自动装配为MyBatis的映射接口)  --> 
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    <!-- mybatis-spring组件的扫描器。org.hnist.dao只需要接口(接口方法与SQL映射文件中相同)-->
        <property name="basePackage" value="org.hnist.dao"></property>
        <property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
    </bean>
     <!-- 指定需要扫描的包(包括子包),使注解生效。dao包在mybatis-spring组件中已经扫描,这里不再需要扫描-->
    <context:annotation-config/>
    <context:component-scan base-package="org.hnist.service"/>
    
    <!--4. 添加事务管理 : DataSourceTransactionManager dataSource:引用上面定义的数据源   -->
    <bean id="txManager"
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>

    <!-- 5. 开启事务注解,使用声明式事务 transaction-manager:引用上面定义的事务管理器 -->
    <tx:annotation-driven transaction-manager="txManager" />
    
</beans>

mybatis-config.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" 
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
    <typeAliases>
        <typeAlias alias="Teacher" type="org.hnist.model.Teacher"/>
        <typeAlias alias="User" type="org.hnist.model.User"/>
        <typeAlias alias="Classes" type="org.hnist.model.Classes"/>
        <typeAlias alias="Course" type="org.hnist.model.Course"/>
    </typeAliases>
    <mappers>
        <mapper resource="org/hnist/dao/TeacherMapper.xml" />
        <mapper resource="org/hnist/dao/UserMapper.xml" />
        <mapper resource="org/hnist/dao/ClassesMapper.xml" />
        <mapper resource="org/hnist/dao/CourseMapper.xml" />
    </mappers>
</configuration>

spring-mvc

<?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:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-4.0.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">

    <!-- 注解扫描包,使SpringMVC认为包下用了@controller注解的类是控制器 -->
    <context:component-scan base-package="org.hnist.controller" />
    <context:component-scan base-package="controller" />
    <context:component-scan base-package="service" />
    <context:component-scan base-package="dao" />
   
    <!-- 开启注解 -->
    <mvc:annotation-driven />
    <!-- 定义跳转的文件的前后缀 ,视图模式配置-->    
    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <!-- 这里的配置我的理解是自动给后面action的方法return的字符串加上前缀和后缀,变成一个 可用的url地址 -->
        <property name="prefix" value="/" />
        <property name="suffix" value=".jsp" />
    </bean>
   
    <!-- 托管MyExceptionHandler -->
    <bean class="exception.MyExceptionHandler"/>
    
    
    <!-- 启动SpringMVC的注解功能,完成请求和注解POJO的映射 -->  
<!--     <bean   -->
<!--         class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">   -->
<!--         <property name="messageConverters">   -->
<!--             <list>   -->
<!--                 <ref bean="mappingJacksonHttpMessageConverter" /> JSON转换器   -->
<!--             </list>   -->
<!--         </property>   -->
<!--     </bean>   -->
    
<!--      配置文件上传,如果没有使用文件上传可以不用配置,当然如果不配,那么配置文件中也不必引入上传组件包  -->
    <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">    
        <!-- 默认编码 -->  
        <property name="defaultEncoding" value="utf-8" />    
        <!-- 文件大小最大值 -->  
        <property name="maxUploadSize" value="5400000" />    
        <!-- 内存中的最大值 -->  
        <property name="maxInMemorySize" value="40960" />    
        <!-- 启用是为了推迟文件解析,以便捕获文件大小异常 -->
        <property name="resolveLazily" value="true"/>
    </bean>   
    
  <!-- 注册格式化转换器 -->  
    <bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
        <property name="formatters">
            <set>
                <!-- 注册自定义格式化转换器 -->
            </set>
        </property>
    </bean> 
    
<!-- 配置ViewResolver 。可用多个ViewResolver 。使用order属性排序。   InternalResourceViewResolver 放在最后-->
<!--     <bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver"> -->
<!--     <property name="order" value="1"></property> -->
<!--         <property name="mediaTypes"> -->
<!--             <map> -->
<!--                 告诉视图解析器,返回的类型为json格式 -->
<!--                 <entry key="json" value="application/json" /> -->
<!--                 <entry key="xml" value="application/xml" /> -->
<!--                 <entry key="htm" value="text/htm" /> -->
<!--             </map> -->
<!--         </property> -->
<!--         <property name="defaultViews"> -->
<!--             <list> -->
<!--                 ModelAndView里的数据变成JSON -->
<!--                 <bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView" /> -->
<!--             </list> -->
<!--         </property> -->
<!--         <property name="ignoreAcceptHeader" value="true"></property> -->
<!--     </bean> -->
</beans>

结果展示

Mybatis级联查询可以通过在Mapper文件中使用嵌套查询的方式实现,具体步骤如下: 1. 在POJO类中定义关联属性(如一对多、多对多等),并提供对应的setter和getter方法。 2. 在Mapper文件中定义对应的嵌套查询语句,使用关联属性的getter方法来获取关联对象的数据,例如: ```xml <select id="findUserById" parameterType="int" resultMap="userResultMap"> select * from user where id = #{id} </select> <resultMap id="userResultMap" type="User"> <id column="id" property="id"/> <result column="username" property="username"/> <result column="age" property="age"/> <association property="department" javaType="Department"> <id column="dept_id" property="id"/> <result column="dept_name" property="name"/> </association> </resultMap> <select id="findUserWithDeptById" parameterType="int" resultMap="userResultMap"> select u.*, d.dept_name from user u left join department d on u.dept_id = d.id where u.id = #{id} </select> ``` 在上述代码中,`findUserById`只查询User表中的数据,而`findUserWithDeptById`则查询User表和Department表中的数据,并将Department作为User对象的关联属性返回。 3. 在业务层中调用Mapper接口的方法,即可进行级联查询,例如: ```java User user = userMapper.findUserWithDeptById(1); System.out.println(user.getDepartment().getName()); ``` 在上述代码中,`userMapper.findUserWithDeptById`方法会返回一个User对象,其中的Department属性已经被赋值为关联的Department对象,通过getDepartment()方法即可获取Department对象的数据。 需要注意的是,在进行级联查询时,需要定义好关联属性的类型和对应的嵌套查询语句,否则会导致查询失败或数据不完整。同时,级联查询也会增加数据库查询开销,应该根据实际情况进行使用。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值