摘要: Gradle runs these phases in order: Phase 1. Initialization Detects the settings.gradle(.kts) file. Creates a Settings instance. Evaluates the settings 阅读全文
posted @ 2024-09-14 17:40 MatroLeox 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Prerequisites Gradle runs on all major operating systems. It requires Java Development Kit (JDK) version 8 or higher to run. To check, run java -versi 阅读全文
posted @ 2024-09-13 15:47 MatroLeox 阅读(17) 评论(0) 推荐(0) 编辑
摘要: Gradle has 3 main directories: Gradle Home Gradle User Home Project Root 1. Gradle Home Gradle Home is the Gradle installation directory. It is common 阅读全文
posted @ 2024-09-13 10:05 MatroLeox 阅读(14) 评论(0) 推荐(0) 编辑
摘要: ### 一、 登录Git托管平台 这里以Gitee为例 ![image](https://img2023.cnblogs.com/blog/2026889/202308/2026889-20230807081331923-1285310998.png) ### 二、新建仓库 1、点击新建仓库 ![i 阅读全文
posted @ 2023-08-07 08:23 MatroLeox 阅读(16) 评论(0) 推荐(0) 编辑
摘要: Git官网教程:https://git-scm.com/book/zh/v2 ### 一、初次运行 Git 前的配置 Git是一个可以多人合作的版本控制系统。为了区分每个人,初次运行 Git 前要配置用户名和邮箱。打开Git命令行,输入如下命令进行配置: ```sh $ git config --g 阅读全文
posted @ 2023-07-28 10:33 MatroLeox 阅读(14) 评论(0) 推荐(0) 编辑
摘要: ### 一、下载 打开 https://git-scm.com/download/win ,点击 Click here to download。下载速度可能比较慢,可以使用迅雷下载。 ![image](https://img2023.cnblogs.com/blog/2026889/202307/2 阅读全文
posted @ 2023-07-28 08:13 MatroLeox 阅读(532) 评论(0) 推荐(0) 编辑
摘要: 官网 https://brew.sh 。 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 阅读全文
posted @ 2022-06-22 22:00 MatroLeox 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 打开官网 https://docs.brew.sh/FAQ#how-do-i-uninstall-homebrew 。找到下面内容,并点击链接: How do I uninstall Homebrew? To uninstall Homebrew, run the uninstall script 阅读全文
posted @ 2022-06-22 20:04 MatroLeox 阅读(2393) 评论(0) 推荐(0) 编辑
摘要: 废话不多说,centos7较之以往变化了很多,准备把自己发现的各种变化记录下来,方便自己和有疑问的爱好者查阅,节省网上搜寻资料的时间,想到哪写到哪,坏笑。 GRUB2取代了grub逐渐成为主流,引导菜单启动从/boot自动生成,不是menu.lst手工配置。具体内容参照 /boot/grub2/gr 阅读全文
posted @ 2022-05-31 20:48 MatroLeox 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 电脑优盘启动,一定要选择有Generic USB Flash Disk启动方式,不要选择默认的UEFI Generic USB Flash Disk启动方式,否则后面操作会不太对,且再分配空间的时候会出现“检查存储配置出错 failed to find a suitable stage1 devic 阅读全文
posted @ 2022-05-30 21:40 MatroLeox 阅读(1663) 评论(0) 推荐(0) 编辑
摘要: server.xml 打开conf/server.xml,找到下面代码,添加属性maxDays="30"。 <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" maxDays="30" prefi 阅读全文
posted @ 2022-05-02 11:08 MatroLeox 阅读(3814) 评论(0) 推荐(0) 编辑
摘要: package matroleox.bscalculator; import android.app.Activity; import android.content.Context; import android.view.MotionEvent; import android.view.View 阅读全文
posted @ 2022-04-04 23:32 MatroLeox 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 不要同时使用conf/Catalina/localhost/your_web.xml和webapps/your_web/META-INF/context.xml,这样会导致无效果。 阅读全文
posted @ 2022-03-27 21:16 MatroLeox 阅读(185) 评论(0) 推荐(0) 编辑
摘要: JSP 7个动作指令: jsp:forward jsp:include jsp:useBean jsp:setProperty jsp:getProperty jsp:param jsp:plugin 一、forward 指令 将页面转发到另一页面。 <jsp:forward page="relat 阅读全文
posted @ 2022-03-17 20:05 MatroLeox 阅读(108) 评论(0) 推荐(0) 编辑
摘要: r.sampling_time >= to_date('${start_date}', 'yyyy-mm-dd') and r.sampling_time < to_date('${end_date}', 'yyyy-mm-dd') or r.sampling_time = to_date('${s 阅读全文
posted @ 2022-03-17 13:29 MatroLeox 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 01.前端这个圈子 社区/组织W3C TPAC w3ctech WebReBuild HTML5研究小组 阿里技术嘉年华 京/沪JS 前端圈HTML5梦工场 无障碍联盟 国内综合前端观察 阮一峰 W3CPLUS W3CFUNS 大前端 W3HELP W3SCHOOL HTML5中国 前端乱炖F2E社 阅读全文
posted @ 2022-03-15 21:39 MatroLeox 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 指令格式: <%@ page 属性名="属性值" ... %> <%@ include file="relativeURLSpec" %> <%@ taglib 属性名="属性值" ... %> 一、page 指令 <%@ page 属性名="属性值" ... %> 属性有: contentType 阅读全文
posted @ 2022-03-15 21:17 MatroLeox 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 一、JSP 注释 <%-- JSP 注释:此内容不会被输出 --%> <!-- HTML 注释:此内容会被输出 --> 二、JSP 声明 <%! public int name; public String getName() { return name; } %> 一个 JSP 页面本质上是一个 阅读全文
posted @ 2022-03-15 20:01 MatroLeox 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 方式一 进入Tomcat文件夹下的webapps文件夹,将其中的ROOT文件重命名,然后新建一个ROOT文件夹即可。 方式二 将server.xml中Host标签的appBase改为其它。 <Host name="localhost" appBase="webapps" unpackWARs="tr 阅读全文
posted @ 2022-03-05 15:26 MatroLeox 阅读(1980) 评论(0) 推荐(0) 编辑
摘要: ALTER USER 'root'@'localhost' IDENTIFIED BY 'root-password'; or SET PASSWORD FOR root = Password('root-password'); 阅读全文
posted @ 2022-03-05 12:33 MatroLeox 阅读(31) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/2026889/202203/2026889-20220304221445880-55320059.png) ![image](https://img2022.cnblogs.com/blog/2026889/202203/2026889-20220304221701476-1881544331.png) ![im 阅读全文
posted @ 2022-03-04 22:25 MatroLeox 阅读(92) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/2026889/202203/2026889-20220304213038408-576415736.png) ![image](https://img2022.cnblogs.com/blog/2026889/202203/2026889-20220304213246459-1406426732.png) ![i 阅读全文
posted @ 2022-03-04 21:05 MatroLeox 阅读(14) 评论(0) 推荐(0) 编辑
摘要: # Other default tuning values # MySQL Server Instance Configuration File # # Generated by the MySQL Server Instance Configuration Wizard # # # Install 阅读全文
posted @ 2022-03-04 12:23 MatroLeox 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 一、官网 https://www.mysql.com 二、下载地址 https://www.mysql.com/downloads/ 三、社区版下载地址 https://dev.mysql.com/downloads/ 下载 MySQL Community Server 或 MySQL Instal 阅读全文
posted @ 2022-03-01 21:18 MatroLeox 阅读(4546) 评论(0) 推荐(0) 编辑
摘要: GA (General Availability):广泛使用版。 RC (Release Candidate):候选版本,该版本是最接近正式版本的版本。 Alpha:内测版本 Bean:公测版本 阅读全文
posted @ 2022-03-01 21:04 MatroLeox 阅读(821) 评论(0) 推荐(0) 编辑
摘要: 一、打开控制面板 二、打开共享 三、输入IP 无法访问服务的原因 https://www.cnblogs.com/neo98/articles/6150039.html 阅读全文
posted @ 2022-03-01 08:31 MatroLeox 阅读(1374) 评论(0) 推荐(0) 编辑
摘要: 注意: 首先对方要开启【远程桌面】。如何开启,请查看这里。 在命令行输入: $ mstsc 问题一 如果出现下面情况,请设置对方主机的密码后,再注销账户重新登录。 或者,允许对方主机空密码登录(不推荐)。 在命令行输入: secpol.msc 问题二 1、Win+R打开运行窗口 2、输入gpedit 阅读全文
posted @ 2022-02-28 21:08 MatroLeox 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 一、打开控制面板 依次点开【系统】 → 【远程设置】 二、允许远程连接 依次点击【允许远程连接到此计算机(L)】 → 【选择用户(S)...】 → 【添加(D)...】 有时会提示防火墙问题 三、添加用户 输入用户名 → 【检查名称】 → 【确定】 四、应用 点击 【确定】 → 【应用】 五、检查服 阅读全文
posted @ 2022-02-28 21:01 MatroLeox 阅读(4960) 评论(0) 推荐(0) 编辑
摘要: 作者 James Gosling Bill Joy Guy Steele Gilad Bracha Alex Buckley Daniel Smith Gavin Bierman 时间 2021-08-09 本书信息 规范:JSR-392 Java SE 17 版本:17 状态:最终发布版本 发布: 阅读全文
posted @ 2022-02-25 19:57 MatroLeox 阅读(110) 评论(0) 推荐(0) 编辑
摘要: package pkg; class Outer { static class Inner {} } 当直接 new Outer.Inner() 会导致 unable to resolve class Outer.Inner。 方式一 通过import方式解决。 import pkg.Outer; 阅读全文
posted @ 2022-02-16 20:42 MatroLeox 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 打开conf/web.xml文件,找到<param-name>listings</param-name> <param-value>false</param-value>,修改为<param-name>listings</param-name> <param-value></param-value> 阅读全文
posted @ 2022-02-09 21:51 MatroLeox 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 打开conf/server.xml文件,找到<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />,修改8080即可。 <?xml version="1.0" encodi 阅读全文
posted @ 2022-02-09 21:31 MatroLeox 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 无论登录还是连接都会连接到数据库,最终都可以执行SQL语句。 登录 打开命令行,输入SQLPLUS。 Microsoft Windows [版本 6.3.9600] (c) 2013 Microsoft Corporation。保留所有权利。 C:\Users\Admin> SQLPLUS SQL* 阅读全文
posted @ 2022-02-03 23:50 MatroLeox 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 访问 https://localhost:1158/em/ 打开如下界面。 登录后 阅读全文
posted @ 2022-02-03 23:45 MatroLeox 阅读(71) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/2026889/202202/2026889-20220203210813154-2110468958.png) ![image](https://img2022.cnblogs.com/blog/2026889/202202/2026889-20220203210839953-2051495546.png) ![ 阅读全文
posted @ 2022-02-03 22:14 MatroLeox 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 文章摘自《Oracle从入门到精通(第3版)》 CHAR 固定长度字符串,当存储的字符串超出长度将报错。 CHAR(length) VARCHAR2 变长字符串,当存储的字符串超出长度将自动扩展。 VARCHAR(length) NUMBER 数值 NUMBER(precision,scale) p 阅读全文
posted @ 2022-02-03 17:09 MatroLeox 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 一、帮助命令 -- 方式一 HELP topic -- 方式二 ? topic 支持模糊查询。 二、对象结构查询 -- 方式一 DESCRIBE object_name -- 方式二 DESC object_name 三、执行SQL脚本 -- 方式一 START {url | file_name[. 阅读全文
posted @ 2022-02-03 16:37 MatroLeox 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 修改密码 ALTER USER username IDENTIFIED BY password 阅读全文
posted @ 2022-02-03 16:03 MatroLeox 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 打开 SQL * PULS ,登录后执行下列命令。 连接 CONNECT username AS SYSDBA 带AS SYSDBA才能启动和关闭数据库。 启动 STARTUP OPEN 其命令格式STARTUP [NOMOUNT | MOUNT | OPEN | FORCE] [RESTRICT] 阅读全文
posted @ 2022-02-01 14:57 MatroLeox 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 本次安装仅以学习为目的,所以安装过程中选择了桌面类。 此处密码同时是system、sys、sysman、dbsnmp这4个账户共同使用的初始密码。 此过程等待时间较长。 此过程等待时间较长。 scott用户拥有的一些示例表和数据一般是学习之用,所以去掉勾;默认密码是tigger。 阅读全文
posted @ 2022-02-01 14:37 MatroLeox 阅读(31) 评论(0) 推荐(0) 编辑