基于CSS3的3D立方体旋转动画
摘要: try-catch-finally 的细解基本测试案例 第一、**只要有finally,那么finally块中代码就会执行;**这句话很重要 第二、如果try-catch中有return , finally也有return有如下两种情况(test03、test04): 修改基本类型不影响返回结果的。 阅读全文
posted @ 2022-07-18 12:19 只会写error 阅读(40) 评论(2) 推荐(0) 编辑
摘要: Specification的基本使用 Specification是啥,相信你都需要使用了,我就不过多介绍了,直接上代码 1.基础表结构 create database jpa; use jpa; CREATE TABLE `teacher` ( `id` int(11) NOT NULL AUTO_ 阅读全文
posted @ 2022-07-09 00:59 只会写error 阅读(602) 评论(0) 推荐(0) 编辑
摘要: Module xxx must not contain source root "E:\project\xxx\service\src\main\java". The root already belongs to module 翻译如下: 模块xxx不得包含源根“E:\project\xxx\se 阅读全文
posted @ 2022-06-13 19:42 只会写error 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Linux环境下通过压缩包安装Git 1、环境准备 CentOS7 yum -y install curl-devel expat-devel gettext-devel openssl-devel zlib-devel gcc perl-ExtUtils-MakeMaker yum -y inst 阅读全文
posted @ 2022-03-28 20:55 只会写error 阅读(382) 评论(0) 推荐(0) 编辑
摘要: Linux环境下通过压缩包安装Maven 1.环境准备 CentOS7 、JDK8 、apache-maven-3.8.5-bin.tar.gz(版本自己选择) 2、将安装包上传至Linux环境 我的上传路径是 /usr/local tar -zxvf apache-maven-3.8.5-bin. 阅读全文
posted @ 2022-03-28 20:55 只会写error 阅读(84) 评论(0) 推荐(0) 编辑
摘要: Linux环境下通过压缩包安装JDK 1.环境准备 CentOS7 Oracle官网下载JDK8, 文件名为 jdk-8XXX-linux-x64.gz即可 2、上传文件至Linux系统, 创建目录并解压 我是直接上传到 /usr/local 目录下 tar -zxvf jdk-8u321-linu 阅读全文
posted @ 2022-03-28 20:18 只会写error 阅读(90) 评论(0) 推荐(0) 编辑
摘要: Linux环境下通过压缩包方式安装MySQL5.7 1、安装前准备 MySQL5.7的gz压缩包(可以通过wget下载 或者 直接下载到本地传输给虚拟机),点击进入下载地址 CentOS7 联网 [root@localhost ~]# vi /etc/sysconfig/network-script 阅读全文
posted @ 2022-03-27 18:45 只会写error 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 启动JvisualVM 工具显示 “无法检测到本地java应用程序“ 1.关闭当前所有Java程序 2.Win + R打开cmd输入以下指令 echo %username% 将输出结果复制下来 3.再Win + R,然后输入: %TMP% 找到 hsperfdata_xxx 的文件夹,把xxx替换为 阅读全文
posted @ 2022-03-22 18:08 只会写error 阅读(1227) 评论(0) 推荐(1) 编辑
摘要: VS Code连接虚拟机 1.安装插件 打开VS Code,安装 Remote - SSH 插件 2.进行ssh设置 快捷键 Ctrl + Shift + P 打开命令面板,输入ssh,选择 Remote-SSH:Settings 进入设置后勾上 Show Login Terminal 3.连接配置 阅读全文
posted @ 2022-03-13 12:06 只会写error 阅读(435) 评论(0) 推荐(0) 编辑
摘要: JPA中的@Embedded和@Embeddable注释 概念很枯燥, 通过代码理解吧 模拟场景 1.建表,插入一条数据 create table if not exists `User`( `id` int(4) auto_increment not null, `name` varchar(8) 阅读全文
posted @ 2022-03-12 21:54 只会写error 阅读(420) 评论(0) 推荐(0) 编辑