上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 46 下一页
摘要: 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 lwx_R 阅读(481) 评论(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 lwx_R 阅读(88) 评论(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 lwx_R 阅读(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 lwx_R 阅读(236) 评论(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 lwx_R 阅读(492) 评论(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 lwx_R 阅读(677) 评论(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 lwx_R 阅读(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 lwx_R 阅读(105) 评论(0) 推荐(0)
摘要: Intent用法 1.显示Intent 2.隐式Intent 启动活动 <activity> android:name=".SecondActivity" android:exported="true"> <intent-filter> <!-- 自动添加到隐式intent--> <category 阅读全文
posted @ 2022-05-05 20:48 lwx_R 阅读(31) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script> function fun(){ //ajax核心xmlHttpRequest对象 var xhttp; if (w 阅读全文
posted @ 2022-05-02 17:12 lwx_R 阅读(19) 评论(0) 推荐(0)
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 46 下一页