上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
  2022年6月9日
摘要: @RequestMapping(value = "preView", method = RequestMethod.GET)public void preView(HttpServletResponse response){ File file = new File("C:\\Users\\admi 阅读全文
posted @ 2022-06-09 16:35 IT-QI 阅读(2949) 评论(0) 推荐(0) 编辑
摘要: 问题如下 <iframe :src="srcUrl"frameborder="0"width="100%"height="100%" allowfullscreen="true"></iframe> async beforeOpen(){ await officeToOfd(this.value.f 阅读全文
posted @ 2022-06-09 15:57 IT-QI 阅读(512) 评论(0) 推荐(0) 编辑
  2022年5月27日
摘要: SQL注入 解决方案: 参数序列化 防止表单重复提交 解决方案:点击时,添加loading,请求结束关闭loading,注:请求失败,也许要关闭loading,允许用户二次点击 常量型参数 解决方案:添加枚举类 或者配置文件,数据字典 尽量减少特殊判断的写法 一定需要请先跟开发经理沟通 代码尽量精简 阅读全文
posted @ 2022-05-27 16:10 IT-QI 阅读(19) 评论(0) 推荐(0) 编辑
  2022年5月26日
摘要: netstat -ano |findstr “2000”taskkill /f /t /im “进程id或者进程名称”taskkill /f /t /im “4052” 阅读全文
posted @ 2022-05-26 09:16 IT-QI 阅读(45) 评论(0) 推荐(0) 编辑
  2022年5月24日
摘要: 1、创建模板IDEA还没有智能到自动为我们创建方法注释,这就是要我们手动为方法添加注释,使用Eclipse时我们生成注释的习惯是 /**+Enter,这里我们也按照这种习惯来设置IDEA的方法注释 1、File-->Settings-->Editor-->Live Templates (1)新建组: 阅读全文
posted @ 2022-05-24 19:50 IT-QI 阅读(3379) 评论(0) 推荐(0) 编辑
摘要: get方式 public String getToken() { try { // 获取token路径 String tokenUrl = CodeRepositoryUtil.getSysConfigValue("identity.token"); // 请求路径 URIBuilder uriBu 阅读全文
posted @ 2022-05-24 10:04 IT-QI 阅读(663) 评论(0) 推荐(0) 编辑
  2022年5月10日
摘要: mian方法 psv 回车快速生成system sout 回车快速生成ctrl+G 快速查找行号全局搜索 ctrl+Shift+F 当前页面所有ctrl+F 阅读全文
posted @ 2022-05-10 10:39 IT-QI 阅读(19) 评论(0) 推荐(0) 编辑
  2022年5月7日
摘要: 示例1:从小到大,正序排序 List<Student> sList = studentList.stream().sorted(Comparator.comparing(Student::getId)).collect(Collectors.toList()); 示例2:倒序 List<Studen 阅读全文
posted @ 2022-05-07 15:40 IT-QI 阅读(1100) 评论(0) 推荐(0) 编辑
  2022年5月5日
摘要: 如果要查询maven某一个资源的坐标,我们通常可以去maven的仓库进行查询, https://mvnrepository.com/,在该网站中可直接搜索想要的资源,然后就能得到该资源的坐标 输入资源名称进行检索 点击你想要的资源进行查看 选择版本查看坐标 maven坐标的作用: 使用唯一标识,唯一 阅读全文
posted @ 2022-05-05 19:47 IT-QI 阅读(985) 评论(0) 推荐(0) 编辑
摘要: 添加相关依赖 添加 Maven 相关依赖,这里需要添加上WEB和SWAGGER依赖。 WEB依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifac 阅读全文
posted @ 2022-05-05 17:47 IT-QI 阅读(35) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页