1 2 3 4 5 ··· 7 下一页
摘要: 后台返回文件流方式,前端采用form表单 action 属性赋值流。代码submit提交. 前端代码如下: <form id="download" action='' method='post'/></form> $("#download").attr("action", url);//触发subm 阅读全文
posted @ 2023-11-23 11:24 ForMeDream 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 1.开机 按 e 键 utf8 后面 添加 rw init=/sysroot/bin/sh 按 ctrl -x 2.输入命令 chroot /sysroot 3. 输入命令 passwd root ,输入密码回车 再输入一次 回车 4.输入命令 touch /.autorelabel 5.输入命令 阅读全文
posted @ 2023-08-09 15:10 ForMeDream 阅读(1263) 评论(0) 推荐(0) 编辑
摘要: # 配置 application.yml 文件 #CAS服务配置cas: server: host: #cas服务后台地址 url: http://localhost:9100/cas #CAS服务登录地址 login_url: ${cas.server.host.url}/login #CAS服务 阅读全文
posted @ 2023-03-02 10:56 ForMeDream 阅读(452) 评论(0) 推荐(0) 编辑
摘要: select b.username,b.sid,b.serial#,logon_time from v$locked_object a,v$session b where a.session_id=b.sid order by b.logon_time alter system kill sessi 阅读全文
posted @ 2022-10-25 14:39 ForMeDream 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 1,先将所有人的代码都提交并push到远程仓库。 2,找一个文件夹中执行git 命令克隆一份裸版本库 git clone --bare git://39.xx.xx.xx/project_name.git3、进入到project_name.git目录中,再执行git push --mirror命令, 阅读全文
posted @ 2022-07-06 15:00 ForMeDream 阅读(58) 评论(0) 推荐(0) 编辑
摘要: #include <sys/socket.h> #include <sys/wait.h> #include <netinet/in.h> #include <netinet/tcp.h> #include <sys/epoll.h> #include <sys/sendfile.h> #inclu 阅读全文
posted @ 2021-05-28 17:16 ForMeDream 阅读(84) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?> <configuration scan="true" scanPeriod="60 seconds"> <appender name="stdout" class="ch.qos.logback.core.ConsoleA 阅读全文
posted @ 2020-10-14 10:07 ForMeDream 阅读(195) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?> <configuration scan="true" scanPeriod="60 seconds"> <appender name="stdout" class="ch.qos.logback.core.ConsoleA 阅读全文
posted @ 2020-09-04 14:55 ForMeDream 阅读(90) 评论(0) 推荐(0) 编辑
摘要: package com.example.take_photo; import android.Manifest; import android.app.Activity; import android.content.ContentValues; import android.content.Int 阅读全文
posted @ 2020-06-19 01:02 ForMeDream 阅读(147) 评论(0) 推荐(0) 编辑
摘要: package main import ( "encoding/json" "fmt" "strconv" "time" ) const ( format="2006-01-02 15:04:05" ) type MyTime time.Time func (t MyTime) MarshalJSO 阅读全文
posted @ 2020-04-02 22:43 ForMeDream 阅读(1751) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 7 下一页