mybatis-plus 分组计算百分比
时间: 2023-06-30 17:22:22 浏览: 375
MyBatis-Plus入门+MyBatis-Plus文档手册 中文pdf高清版.rar
5星 · 资源好评率100%
好的,您可以按照以下步骤来实现 mybatis-plus 分组计算百分比:
1. 在 Mapper 接口中定义对应的 SQL 语句,使用 GROUP BY 子句进行分组,并统计每组的总数。
```java
@Select("SELECT type, COUNT(*) AS total FROM my_table GROUP BY type")
List<Map<String, Object>> countByType();
```
2. 在实体类中添加计算百分比的属性,并在对应的 getter 方法中进行计算。
```java
public class MyEntity {
private String type;
private int total;
private double percentage;
// Getter and Setter ...
public void setPercentage(double percentage) {
this.percentage = percentage;
}
public double getPercentage() {
return ((double) total / (double) totalCount) * 100.0;
}
}
```
3. 在 Service 类中调用 Mapper 接口的方法获取统计数据,并将数据封装到实体类中。
```java
@Service
public class MyService {
@Autowired
private MyMapper myMapper;
public List<MyEntity> countPercentageByType() {
List<Map<String, Object>> countList = myMapper.countByType();
int totalCount = countList.stream().mapToInt(map -> Integer.parseInt(map.get("total").toString())).sum();
List<MyEntity> resultList = new ArrayList<>();
for (Map<String, Object> countMap : countList) {
MyEntity entity = new MyEntity();
entity.setType(countMap.get("type").toString());
entity.setTotal(Integer.parseInt(countMap.get("total").toString()));
entity.setTotalCount(totalCount);
resultList.add(entity);
}
return resultList;
}
}
```
4. 在 Controller 类中调用 Service 类的方法获取统计数据,并将数据返回给前端展示。
```java
@RestController
public class MyController {
@Autowired
private MyService myService;
@GetMapping("/countPercentage")
public List<MyEntity> countPercentage() {
return myService.countPercentageByType();
}
}
```
以上就是使用 mybatis-plus 分组计算百分比的简单实现方式。需要注意的是,如果统计数据量较大,建议使用数据库的分页查询功能,避免一次性查询过多数据导致性能问题。
阅读全文