上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 33 下一页
  2021年4月18日
摘要: 当使用本地MySQL客户端连接远程Linux的时候,出现2003,大概率是Linux操作系统没有关闭数据库 解决方法: 1.查看远程Linux操作系统是否有关闭防火墙 systemctl status firewalld 如果出现 Active Active(running),那么表示Linux操作 阅读全文
posted @ 2021-04-18 20:18 文种玉 阅读(784) 评论(0) 推荐(0) 编辑
  2021年4月17日
摘要: console.log(3>2 && 4==4) console.log(3>2 && 4) console.log(0 && 9); console.log(null && '红浪漫') console.log(5 && 8) console.log(5+1 && 8+1) console.log 阅读全文
posted @ 2021-04-17 14:27 文种玉 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 1. JavaScript初体验 在 HTML 中,JavaScript 代码必须位于<script>与 </script> 标签之间。 <script> alert('这是我们的第一个js代码'); </script> 注释:旧的 JavaScript 例子也许会使用 type 属性:<scrip 阅读全文
posted @ 2021-04-17 11:41 文种玉 阅读(92) 评论(0) 推荐(0) 编辑
摘要: ASCII在线查找表 https://www.qqxiuzi.cn/bianma/ascii.htm 阅读全文
posted @ 2021-04-17 10:59 文种玉 阅读(239) 评论(0) 推荐(0) 编辑
摘要: <script> /如果说变量乘以1 变量就会被自动隐式转换为数字类型,如果转不了就变成NaN/ var a = "1"; console.log(a * 1);//number类型的 1 var b = "1a"; console.log(b * 1);//NaN /减法也可以/ var c = 阅读全文
posted @ 2021-04-17 09:03 文种玉 阅读(329) 评论(0) 推荐(0) 编辑
  2021年4月16日
摘要: 在SpringBoot项目中出现 Error:java: 无效的目标发行版: 11 表示的你的jdk版本号为11 既然出现这个错误了,修改两个地方 1.pom.xml中 修改jdk版本 2.在Setting下Build,Execution,Deployment下修改jdk的版本号 阅读全文
posted @ 2021-04-16 23:59 文种玉 阅读(1069) 评论(0) 推荐(0) 编辑
摘要: 依赖范围 对于编译classpath有效 对于测试classpath有效 对于运行时classpath有效 compile Y Y Y test - Y - provided Y Y - runtime - Y Y system Y Y - 阅读全文
posted @ 2021-04-16 19:10 文种玉 阅读(55) 评论(0) 推荐(0) 编辑
摘要: Help->Find Action),输入Maven projects IDEA侧边栏消失的万能解决方案 View --> Tool Buttons 阅读全文
posted @ 2021-04-16 08:29 文种玉 阅读(224) 评论(0) 推荐(0) 编辑
  2021年4月15日
摘要: 一.在pom.xml文件夹导入junit包<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSc 阅读全文
posted @ 2021-04-15 23:17 文种玉 阅读(251) 评论(0) 推荐(0) 编辑
摘要: Maven的常见命令 compile 编译java文件 只能编译正式文件 clean 删除target文件夹 test --mvn test-compile 用来编译测试文件的 测试工程 用来编译测试文件的 package 打包工程 install 安装工程 deploy 发布工程 阅读全文
posted @ 2021-04-15 16:32 文种玉 阅读(35) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 33 下一页