上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 45 下一页
摘要: 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 阅读(232) 评论(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 阅读(488) 评论(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 阅读(675) 评论(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 阅读(100) 评论(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 阅读(28) 评论(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)
摘要: <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 阅读(37) 评论(0) 推荐(0)
摘要: 1.配置idea中maven设置 打开setting for new project 设置maven默认路径和默认设置路径 1.创建普通java项目 选择quickstart 改groudId 否则src文件没有 在main和test下新建resources文件 右上角Add configurati 阅读全文
posted @ 2022-05-01 12:47 lwx_R 阅读(95) 评论(0) 推荐(0)
摘要: 1.下载 3.6.3版本 https://downloads.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip maven 版本和jdk版本要对应 maven 3.8.5 和 jdk1.8 会报错 Caused by 阅读全文
posted @ 2022-05-01 12:05 lwx_R 阅读(53) 评论(0) 推荐(1)
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 45 下一页