1、更新数据库字段为空的有效写法 //修改devic信息, 更新为空 devicService.lambdaUpdate() .eq(Device::...
1、更新数据库字段为空的有效写法 //修改devic信息, 更新为空 devicService.lambdaUpdate() .eq(Device::...
@Configuration public class RedisConfig { RedisConfig(){ //打开autotype功能,解决存取objec...
@Configuration @Slf4j public class WebConfig implements WebMvcConfigurer { private st...
QueryWrapper queryWrapper = new QueryWrapper<>(); queryWrapper.eq("patient_id", su...
//白名单uri直接放行 String requestURI = request.getRequestURI(); PathMatcher pathMatch...
public static <T> void readFromTempCsvFile(String filename) throws IOException { //...
Swagger是我们常用的API Doc工具,非常便于开发人员调试,后台和前端开发人员协作,以及对外公布API使用。如何在生产环境中禁止swagger了? 如何禁止Swagg...
sql查询结果与表的entity不一致时,用xml的ResultMap来自定义字段,便可轻松解决! 统计自段也可以在sql语句中用 as 将自定义信息转成一个 result ...
private static void changeDateListToTreeMap(List<Date> dateList, Map map) { for (D...
public AuthToken applyToken(String username, String password, String clientId, String c...
JWT令牌生成采用非对称加密算法 1、生成密钥证书 下边命令生成密钥证书,采用RSA 算法每个证书包含公钥和私钥 keytool -genkeypair -alias xuk...
void uploadSomeType(@RequestParam("uploadFile") MultipartFile multipartFile) { //进行...
BeanUtils.copyProperties(userInfo, account); 参考文章 https://blog.csdn.net/wuge507639721/a...
子类集合转父类结合: @Override public ArrayList getOwnedUserList(Account account) { Accoun...
HttpHeaders headers = new HttpHeaders(); headers.add("Content-Type", "applicatio...
// LocalDate, LocalDateTime,Date是带时区的,时间戳是从格林威治1970年01月01日00时00分00秒起至现在的总秒数。 1.LocalDat...
// 用一个表统计另一个表的数据,一行数据带上一个另一个表的统计值。 如: 医生所有信息 + 患者数量 //注意: 一定要加group by,否则结果完全不对!!! sele...
//修改列的类型 alter table `patient` MODIFY column `patie_id` VARCHAR(30) CHARACTER SET utf8 ...
1. DeviceMapper.xml<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//m...
public interface DeviceMapper extends BaseMapper<Device> { @Select("select c.*, d.pat...