2024.7.12
- 一. 省市县的逻辑开发。
- 1、准备:
- 1.1. 要求:
- 1.2 数据库表:
- 2. 逻辑:
- 3. 方法
- 3.1 创建实体类
- 3.2 数据访问层
- 3.3 实现递归方法
- 3.4 控制器实现
- 3.5 前端处理
- 二、多表联查(给我干红温了)
- 1. 出现了问题
- 2 sql语句的书写
- 3 mapper.xml 中:
- 4 解决前面报的错:
一. 省市县的逻辑开发。
1、准备:
1.1. 要求:
做一个选择省市县的开发:
1.2 数据库表:
2. 逻辑:
首先根据这张表,证明,我们所有的数据都将放到这张表里面,包含省市县。但有上级行政区划这一个字段,证明我们需要通过这个字段来判断,他的等级。(如:没有上级行政区划,则为省,有一级为市,有两级为县)根据这个去进行操作。
3. 方法
1.通过自连接的方式来进行查询全部表,然后就能获得分级的表,然后返回数据。
2.根据code直接查询出全部的表进行逻辑操作,通过递归,构造树形结构(超级厉害)
所以我们直接介绍第二种:
3.1 创建实体类
首先,你可能需要修改 Area 实体类,以便于支持递归结构。添加一个 children 属性来存储子节点:
package com.example.demo.model;import java.util.ArrayList;
import java.util.List;public class Area {private String code; // 行政区划编码private String name; // 行政区划名称private String parentCode; // 上级行政区划编码private List<Area> children = new ArrayList<>(); // 子级行政区划列表// Getters and Setters
}
3.2 数据访问层
在数据访问层中,提供一个方法来根据父级编码获取所有子级数据:
package com.example.demo.repository;import com.example.demo.model.Area;
import org.springframework.data.jpa.repository.JpaRepository;
import java.util.List;public interface AreaRepository extends JpaRepository<Area, String> {List<Area> findByParentCode(String parentCode);
}
3.3 实现递归方法
在服务层中实现递归方法来构建完整的层级结构:
package com.example.demo.service;import com.example.demo.model.Area;
import com.example.demo.repository.AreaRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.List;@Service
public class AreaService {@Autowiredprivate AreaRepository areaRepository;// 递归方法来构建层级结构public List<Area> getAllAreas() {List<Area> allAreas = areaRepository.findAll();return buildHierarchy(allAreas, null);}// 构建层级结构的方法private List<Area> buildHierarchy(List<Area> allAreas, String parentCode) {List<Area> result = new ArrayList<>();for (Area area : allAreas) {if ((parentCode == null && area.getParentCode() == null) || (parentCode != null && parentCode.equals(area.getParentCode()))) {// 找到子级,递归构建子级树area.setChildren(buildHierarchy(allAreas, area.getCode()));result.add(area);}}return result;}
}
3.4 控制器实现
在控制器中调用服务层的方法,并返回构建好的层级结构数据:
package com.example.demo.controller;import com.example.demo.model.Area;
import com.example.demo.service.AreaService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;@RestController
@RequestMapping("/api/areas")
public class AreaController {@Autowiredprivate AreaService areaService;@GetMappingpublic List<Area> getAllAreas() {return areaService.getAllAreas();}
}
3.5 前端处理
前端接收到的数据将是一个嵌套的树形结构,你可以用来构建下拉框或其他需要显示层级结构的控件。例如,使用 JavaScript 来处理并渲染树形结构数据:
// 假设你使用 jQuery
$(document).ready(function() {$.get('/api/areas', function(data) {// 处理和渲染树形结构renderTree(data);});
});function renderTree(data) {// 递归渲染树形结构function renderNode(node) {let html = '<option value="' + node.code + '">' + node.name + '</option>';if (node.children && node.children.length > 0) {node.children.forEach(child => {html += renderNode(child);});}return html;}let html = '<select>' + data.map(renderNode).join('') + '</select>';$('#treeContainer').html(html);
}
二、多表联查(给我干红温了)
1. 出现了问题
在我写sql的时候,开始对应着每个表之间对应的字段开始写join on语句,但还是查不出数据,原来,我们需要保证我们的每个字段都有数据,才会返回查询, 所以我去修改我需要表的数据,发现是公共表,我他们写入数据不一致,导致的,这就是开发的时候用服务器连数据库的弊端,我直接把服务器的表复制到我本地,开始开发。还有,xml里面一直报错:
2 sql语句的书写
注意: 我们使用join on一定要对应好字段,才能保证数据的一致性。
sql:
SELECT t1.term_sn,t1.out_term_type_name,t1.om_term_info_id,t3.bill_type,t3.ship_notice_no,t3.ship_time,t4.custom_name,t3.take_address,t3.branch_name,t3.bank_contacts,t3.bank_tel,t4.sales_uid,t1.ship_state,t1.out_region_id,t6.user_name,t1.creat_time
from om_term_info t1join out_term_type t2 on t1.out_term_type_name= t2.namejoin out_term_ship t3 on t1.om_term_info_id=t3.om_term_info_idjoin out_custom_info t4 on t3.custom_no =t4.custom_nojoin out_region t5 on t1.out_region_id=t5.codejoin sys_user t6 on t1.user_id=t6.user_id;
3 mapper.xml 中:
我们返回数据的时候,需要定义一个<resultMap,然后注意id和type,对应不好很容易出错。还有就是表字段和属性的对应,要细心。
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""http://mybatis.org/dtd/mybatis-3-mapper.dtd"><mapper namespace="com.hengyin.ship.mapper.HomePageMapper"><resultMap id="HomePageResult" type="com.hengyin.ship.domain.Homepage"><id column="term_sn" property="termSn" jdbcType="VARCHAR"/><result column="out_term_type_name" property="outTermTypeName" jdbcType="VARCHAR"/><result column="om_term_info_id" property="omTermInfoId" jdbcType="BIGINT"/><result column="bill_type" property="billType" jdbcType="VARCHAR"/><result column="ship_notice_no" property="shipNoticeNo" jdbcType="VARCHAR"/><result column="ship_time" property="shipTime" jdbcType="TIMESTAMP"/><result column="custom_name" property="customName" jdbcType="VARCHAR"/><result column="take_address" property="takeAddress" jdbcType="VARCHAR"/><result column="branch_name" property="branchName" jdbcType="VARCHAR"/><result column="bank_contacts" property="bankContacts" jdbcType="VARCHAR"/><result column="bank_tel" property="bankTel" jdbcType="VARCHAR"/><result column="sales_uid" property="salesUid" jdbcType="BIGINT"/><result column="ship_state" property="shipState" jdbcType="BIGINT"/><result column="out_region_id" property="outRegionId" jdbcType="BIGINT"/><result column="user_name" property="userName" jdbcType="VARCHAR"/><result column="creat_time" property="createTime" jdbcType="TIMESTAMP"/></resultMap><!-- <select id="slectHomePage" resultType="com.hengyin.ship.domain.Homepage">--><select id="slectHomePage" resultMap="HomePageResult">SELECT t1.term_sn, t1.out_term_type_name, t1.om_term_info_id, t3.bill_type,t3.ship_notice_no, t3.ship_time, t4.custom_name, t3.take_address,t3.branch_name, t3.bank_contacts, t3.bank_tel, t4.sales_uid,t1.ship_state, t1.out_region_id, t6.user_name, t1.creat_timeFROM om_term_info t1JOIN out_term_type t2 ON t1.out_term_type_name = t2.nameJOIN out_term_ship t3 ON t1.om_term_info_id = t3.om_term_info_idJOIN out_custom_info t4 ON t3.custom_no = t4.custom_noJOIN out_region t5 ON t1.out_region_id = t5.codeJOIN sys_user t6 ON t1.user_id = t6.user_id;</select>
</mapper>
4 解决前面报的错:
提示我们limit 10的错误 ,我找半天也没找到我哪里写limit10,最有趣的是,我第一次问gpt,他告诉我让我加上limit10,然后还报错,又发给他,他又说我加了limit 10 哈哈哈哈哈哈哈。
最后的原因是我忘记了再controller中我加入了分页查询的工具类导致的,下次要思维活跃一点。