上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 43 下一页
摘要: 个人环境:腾讯云 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 阅读(55) 评论(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 阅读(62) 评论(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 阅读(198) 评论(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 阅读(371) 评论(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 阅读(586) 评论(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 阅读(21) 评论(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 阅读(74) 评论(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 阅读(15) 评论(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 阅读(11) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript" src="js/jquery.js"></script> <script> function fun(){ $.ajax({ url:"ser1",//servlet路径 type:"post",//请求方式 默认get data:{ u 阅读全文
posted @ 2022-05-02 17:12 lwx_R 阅读(24) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 43 下一页