【MapSheep】
[好记性不如烂笔头]
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 38 下一页
摘要: Get方式传递数组与集合, Java后端接收 Get方式传递 /** * @param Integer[] ids or List<Integer> list * @author code.Map * @version 创建时间:2021年3月9日 下午10:02:24 * 请求地址: http:/ 阅读全文
posted @ 2021-03-09 10:45 (Play) 阅读(2278) 评论(0) 推荐(0)
摘要: 报错原因: 对象在初始化时没有找到对应的构造方法, 从而导致对象初始化失败。 解决方法: 提供相应的构造方法即可, 如示例接口, 有两种处理方法。 方法一, 参数前加@RequestParam @GetMapping("sample") public void sample(@RequestPara 阅读全文
posted @ 2021-03-09 10:43 (Play) 阅读(297) 评论(0) 推荐(0)
摘要: Mybatis多对一【association】 多对一 /** * 添加部门实体字段 * 第一步:多方添加一方的实体类:com/hxh/basic/project/vo/UserVo.java:18 */ private GradeVo gradeVo; /*第二步:在一方Mapper中添加根据编号 阅读全文
posted @ 2021-03-09 09:42 (Play) 阅读(153) 评论(0) 推荐(0)
摘要: Dependencies - [依赖], Libraries - [库] IDEA中库和依赖的关系。 01 02 阅读全文
posted @ 2021-03-05 17:22 (Play) 阅读(146) 评论(0) 推荐(0)
摘要: 问题描述 问题描述:web开发中,在使用MySQL数据库时,有时候会遇到下面这样的警告描述,原因是当前版本的MySQL需要指明是否进行SSL连接。 警告提示:WARN: Establishing SSL connection without server's identity verificatio 阅读全文
posted @ 2021-03-04 16:52 (Play) 阅读(1359) 评论(0) 推荐(0)
摘要: 常用命令 001 查看为提交的 git status 添加单个文件到暂存区 git add 路径 提交所有的 git add . 查看提交本地的日志 git log 附加命令 git branch -av 查看所有的分支 *代表正在使用的分支 HEAD → codemap[查看正在使用的分支] gi 阅读全文
posted @ 2021-03-04 16:17 (Play) 阅读(64) 评论(0) 推荐(0)
摘要: 方法一 使用JDK中Annotation注解包 // 作用在实体类上 @JsonInclude(JsonInclude.Include.NON_NULL) 方法二 添加Hutool工具包依赖 <!--hutool工具类--> <dependency> <groupId>cn.hutool</grou 阅读全文
posted @ 2021-03-03 09:19 (Play) 阅读(633) 评论(0) 推荐(0)
摘要: 创建父实体类 package com.example.demo.pojo; public class BaseCompanyDto { // 表名 private String tableName; // 关联的表名 private String partTableName; } 普通实体类继承 p 阅读全文
posted @ 2021-03-02 17:32 (Play) 阅读(780) 评论(0) 推荐(0)
摘要: 示例代码 如下 <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>two</title> <script> console.group("one pass"); function funIDcard(){ va 阅读全文
posted @ 2021-03-01 17:22 (Play) 阅读(114) 评论(0) 推荐(0)
摘要: Tomcat启动监听器被其他程序占用 示例 错误启动TOMCAT时: 代理抛出异常错误: java.rmi.server.ExportException: Port already in use: 1099; nested exception is: java.net.BindException: 阅读全文
posted @ 2021-03-01 15:19 (Play) 阅读(1424) 评论(0) 推荐(0)
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 38 下一页