Java中假设两张表,第一张表是数据字典表,第二张表是关联表,往前端页面展示,先查询出字典表所有内容,第二张表的id对应字典表的一级分类,新增需要通过管理显示出二级分类
时间: 2023-08-29 12:04:29 浏览: 133
首先,可以通过一个查询操作获取字典表的所有数据,然后再通过另一个查询操作获取关联表中所有的一级分类(即字典表中的id),最后将两个查询结果进行合并,形成一个新的数据集合并到前端页面展示。
假设字典表的表名为 `dictionary`,包含字段为 `id, first_category, second_category, content`;关联表的表名为 `relation`,包含字段为 `id, first_category_id, second_category, content`。其中,`first_category_id` 是关联表中用于关联字典表的字段,对应字典表中的 `id` 字段。
首先,可以通过以下 SQL 语句查询字典表中的所有内容:
```
SELECT id, first_category, second_category, content FROM dictionary;
```
然后,通过以下 SQL 语句查询关联表中的所有一级分类(即字典表中的id):
```
SELECT DISTINCT first_category_id FROM relation;
```
接着,将两个查询结果进行合并,可以在 Java 中使用 List 和 Map 进行操作。具体实现方式如下:
```
// 查询字典表中的所有内容
String queryDictionarySql = "SELECT id, first_category, second_category, content FROM dictionary";
List<Map<String, Object>> dictionaryList = jdbcTemplate.queryForList(queryDictionarySql);
// 查询关联表中的所有一级分类
String queryFirstCategorySql = "SELECT DISTINCT first_category_id FROM relation";
List<Map<String, Object>> firstCategoryList = jdbcTemplate.queryForList(queryFirstCategorySql);
// 将字典表和关联表合并成一个新的列表
List<Map<String, Object>> resultList = new ArrayList<>();
for (Map<String, Object> firstCategory : firstCategoryList) {
Map<String, Object> item = new HashMap<>();
item.put("id", firstCategory.get("first_category_id"));
item.put("first_category", dictionaryList.stream()
.filter(d -> d.get("id").equals(firstCategory.get("first_category_id")))
.findFirst().orElse(Collections.emptyMap()).get("first_category"));
item.put("second_category", dictionaryList.stream()
.filter(d -> d.get("id").equals(firstCategory.get("first_category_id")))
.map(d -> d.get("second_category"))
.collect(Collectors.toList()));
resultList.add(item);
}
// 将结果返回到前端页面展示
return resultList;
```
以上代码中,首先使用 `jdbcTemplate` 对象分别查询字典表和关联表中的数据,并将结果保存在 `dictionaryList` 和 `firstCategoryList` 中。接着,通过循环遍历关联表中的所有一级分类(即字典表中的id),将字典表和关联表进行合并,形成一个新的列表 `resultList`,其中每个元素包含三个字段:id、first_category 和 second_category,分别对应字典表中的 id、一级分类和二级分类列表。最后,将 `resultList` 返回到前端页面展示。
阅读全文