06 2022 档案
摘要:pom依赖: <!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-all --><dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>
阅读全文
摘要:第一种方法: List<String> list = Arrays.asList("1", "2", "3", "4", "5"); // method1 创建一个Integer类型的集合,循环遍历String类型的数组并把数据添加进集合 List<Integer> integerList = ne
阅读全文
摘要:一、基础 1、说明:创建数据库CREATE DATABASE database-name2、说明:删除数据库drop database dbname3、说明:备份sql server 创建 备份数据的 deviceUSE masterEXEC sp_addumpdevice 'disk', 'tes
阅读全文
摘要:@Null 被注释的元素必须为 null @NotNull 被注释的元素必须不为 null @AssertTrue 被注释的元素必须为 true @AssertFalse 被注释的元素必须为 false @Min(value) 被注释的元素必须是一个数字,其值必须大于等于指定的最小值 @Max(va
阅读全文
摘要:一,postman截图: 二,java代码: package com.cxqy.officialserver.dto.personalsub;import com.alibaba.fastjson.JSONArray;import com.alibaba.fastjson.JSONObject;/*
阅读全文
摘要:use stu;drop table if exists student;create table student ( s_id int(11) not null auto_increment , sno int(11), sname varchar(50), sage int(11), ssex
阅读全文
摘要:如商品订单信息表 查询需要信息并做模糊处理查询: selectt.goods_order_id orderId,t.goods_id goodsId,t.goods_spe_id speId,t.goods_order_no orderNumber,t.number orderGoodsNum,JS
阅读全文