UserInfoHolder --也可以换成user /** *用户登录 返回角色ABCF,根据角色判断可查看哪个页面 * *///@ACL@PostMapping("/userLogin")public BaseResponse userLogin(@RequestBody User user, ...
分类:
其他好文 时间:
2021-05-25 18:35:11
阅读次数:
0
Session与Cookie的原理以及使用小案例 Cookie和Session所解决的问题 都是用来解决HTTP的无状态问题,由于HTTP每一次请求都相当于不同的用户向服务器发送请求。HTTP协议无法记住浏览器端是不是同一个用户。Cookie和Session都是为了解决一个用户的多次请求之间数据的共 ...
分类:
编程语言 时间:
2021-05-25 17:52:07
阅读次数:
0
增加模块QT += network // 初始化属性 ui->inport->setText("8888"); ui->outport->setText("9999"); ui->localip->setText("127.0.0.1"); // 创建套接字 udp = new QUdpSocket ...
分类:
其他好文 时间:
2021-05-24 17:03:08
阅读次数:
0
记住重要的一点是:hql不操作数据库,他操作的是类对象。 这里有两张表 User(id,name) 对应User类(int id,String name) Score(id,math,user_id),user_id为外键,对应User表中的id 对应Score类(int id,int math,U ...
分类:
Web程序 时间:
2021-05-24 16:52:24
阅读次数:
0
An unhandled exception occurred while processing the request. InvalidOperationException: No authenticationScheme was specified, and there was no Defau ...
分类:
Web程序 时间:
2021-05-24 16:10:46
阅读次数:
0
1. 登录 kubectl get pods kubectl exec -it onedata-oracle-795d6c558b-b2cqj /bin/bash sqlplus /nolug connect / as sysdba 2. 用户账号 创建: create user onedata i ...
分类:
数据库 时间:
2021-05-24 14:53:10
阅读次数:
0
DHCP (Dynamic Host Configuration Protocol): An application-layer client-server protocol for allowing a device to automatically obtain an IP address. D ...
分类:
其他好文 时间:
2021-05-24 14:38:40
阅读次数:
0
数据库导入导出数据解释 --新建用户(sibpm_hc:用户名,sibpm_osa_f_hc:密码) create user sibpm_hc identified by sibpm_osa_f_hc --授权 grant dba,connect to sibpm_hc --cmd 运行,不用登陆 ...
分类:
数据库 时间:
2021-05-24 13:35:21
阅读次数:
0
从一台Linux远程连接另一台linux上的MySQL, 出现ERROR 2003 (HY000): Can't connect to MySQL server on 'xxx.xxx.xxx.85'(111)错误。 [mysql@vvmvcs0 ~]$ mysql -hxxx.xxx.xxx.85 ...
分类:
数据库 时间:
2021-05-24 13:33:51
阅读次数:
0
查看远程仓库 如果想查看你已经配置的远程仓库服务器,可以运行 git remote 命令,它会列出你指定的每一个远程服务器的名称 如果是刚 clone 下来的自己的库,能看到 origin,这是 Git 起的默认名字 $ git clone https://github.com/schacon/ti ...
分类:
其他好文 时间:
2021-05-24 12:39:49
阅读次数:
0