摘要:
透传 Student magotan = new Student(1, "NEW MAGOTAN"); Student passat = new Student(); // 将迈腾的组件复制到帕萨特中 BeanUtils.copyProperties(magotan, passat); System
阅读全文
posted @ 2021-06-21 10:59
(Play)
阅读(143)
推荐(0)
摘要:
排包 <dependency> <groupId>com.rd.convenience</groupId> <artifactId>rd-convenience-merchant-api-common</artifactId> <version>1.0.0-SNAPSHOT</version> <e
阅读全文
posted @ 2021-06-18 09:55
(Play)
阅读(46)
推荐(0)
摘要:
矢量图和位图的区别 矢量图它无限放大都不会出现图像失真的效果 位图放大之后会越来越不清晰
阅读全文
posted @ 2021-06-15 15:57
(Play)
阅读(697)
推荐(0)
摘要:
请求URL:http://localhost:8081/basic_project/user/mapCode 入参出餐 { "requestId": "1101", "tenantId": "1102", "pin": "1104", "data": { "id": "5010", "name":
阅读全文
posted @ 2021-06-10 16:23
(Play)
阅读(320)
推荐(0)
摘要:
测试 public static void main(String[] args) { // 将 pojoList 转换至 dtoList 中 List<Student01> dtoList = new ArrayList<>(); List<Student01> pojoList = new Ar
阅读全文
posted @ 2021-06-03 10:09
(Play)
阅读(889)
推荐(0)
posted @ 2021-06-02 18:28
(Play)
阅读(31)
推荐(0)
摘要:
List product_ids = Arrays.asList(UseProdIds.split(","));
阅读全文
posted @ 2021-06-01 17:40
(Play)
阅读(60)
推荐(0)
摘要:
简介 什么是SpringCloud 概念 构建分布式系统不需要复杂和容易出错。 SpringCloud 为最常见的分布式系统模式提供了一种简单且易于接受的编程模型,帮助开发人员构建有弹性的、可靠的、协调的应用程序。 SpringCloud 构建于 SpringBoot 之上,使得开发者很容易入手并快
阅读全文
posted @ 2021-06-01 17:31
(Play)
阅读(137)
推荐(0)
摘要:
实体类 @Data class Student01 { private Integer id; private String name; Student01(Integer id, String name) { this.id = id; this.name = name; } } 遍历Map集合
阅读全文
posted @ 2021-06-01 15:03
(Play)
阅读(1878)
推荐(0)
摘要:
package com.hxh.basic.project.Test02; import com.alibaba.fastjson.JSON; import com.google.zxing.BarcodeFormat; import com.google.zxing.EncodeHintType;
阅读全文
posted @ 2021-05-31 16:16
(Play)
阅读(430)
推荐(0)