上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 46 下一页
摘要: 1984年Sun公司就开发了网络文件系统(NFS:Network File System)协议,NFS协议允许网络中的计算机之间通过TCP/IP网络资源共享。而NFS客户端可以透明地读写位于远端NFS服务器上的文件,就像现今用自己的电脑访问本地文件一样。 云存储技术基于虚拟化 我们应该要正确的理解云 阅读全文
posted @ 2022-06-05 16:21 轩哥聊码 阅读(645) 评论(0) 推荐(0)
摘要: 1.使用yum安装依赖包 yum install -y yum-utils 2.添加yum软件源后安装Docker yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.rep 阅读全文
posted @ 2022-05-19 20:27 轩哥聊码 阅读(489) 评论(0) 推荐(0)
摘要: 个人环境:腾讯云 CentOS8.2 部署过nginx 1.首先想使用安装脚本来安装 参考的教程:https://www.jianshu.com/p/0638501fc4b3 https://blog.csdn.net/mzl_sx/article/details/113354818 官网文档:ht 阅读全文
posted @ 2022-05-19 00:13 轩哥聊码 阅读(97) 评论(0) 推荐(0)
摘要: 腾讯云的CentOS 8.2 1.先在控制台创建密码以SSH连接 2.连接Xshell 用户名默认root 3.安装JDK yum -y install java-1.8.0-openjdk 4.安装Tomcat 连接:https://tomcat.apache.org/download-80.cg 阅读全文
posted @ 2022-05-16 16:51 轩哥聊码 阅读(78) 评论(0) 推荐(0)
摘要: Nginx 安装和部署 1.1 Nginx安装:sudo yum install nginx 1.2 Nginx启动 sudo systemctl enable nginx sudo systemctl start nginx 1.3 Nginx重启命令 nginx -s reload 1.4 Ng 阅读全文
posted @ 2022-05-14 20:14 轩哥聊码 阅读(243) 评论(0) 推荐(0)
摘要: 1.安装Android SDK https://www.androiddevtools.cn/ 下载SDK Tools 2.配置Android SDK file->project->structure->SDKs,点+,选择add android SDK,然后选择下载好的SDK路径 3.配置grad 阅读全文
posted @ 2022-05-08 12:29 轩哥聊码 阅读(497) 评论(0) 推荐(0)
摘要: 1.File->Setting->Editor->File and Code Templates 2.点击加号 Name:XML File ,Extension:xml(注意不要加.) 输入内容: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE m 阅读全文
posted @ 2022-05-05 22:43 轩哥聊码 阅读(682) 评论(0) 推荐(0)
摘要: 1.mybatis等配置文件,实体类和原生一样 2.在mapper包下新建接口类my2,方法即为操作数据库方法 package mapper; import entity.User; import java.util.List; public interface my2 { public int i 阅读全文
posted @ 2022-05-05 22:35 轩哥聊码 阅读(34) 评论(0) 推荐(0)
摘要: 1.pom.xml <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.11</version> </dependency> <!--mybatis依赖--> 阅读全文
posted @ 2022-05-05 22:28 轩哥聊码 阅读(112) 评论(0) 推荐(0)
摘要: Intent用法 1.显示Intent 2.隐式Intent 启动活动 <activity> android:name=".SecondActivity" android:exported="true"> <intent-filter> <!-- 自动添加到隐式intent--> <category 阅读全文
posted @ 2022-05-05 20:48 轩哥聊码 阅读(35) 评论(0) 推荐(0)
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 46 下一页