上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 33 下一页
摘要: 今日学习docker。事事不顺 阅读全文
posted @ 2024-06-14 23:39 笠大 阅读(10) 评论(0) 推荐(0)
摘要: 今日学习SpringSecurity的鉴权操作 代码如下 // 查询用户权限 // 根据用户id从用户角色表中获取角色id List<UserRoles> roleIds = userRolesService.list(new LambdaQueryWrapper<UserRoles>() .eq( 阅读全文
posted @ 2024-06-14 00:07 笠大 阅读(25) 评论(0) 推荐(0)
摘要: 继续写SpringSecurity 学习了一些token校验,验证码发送,redis使用等等 阅读全文
posted @ 2024-06-14 00:05 笠大 阅读(11) 评论(0) 推荐(0)
摘要: 今日出去骑车,虽然很热,但是很爽 其余时间一直在复习计网 阅读全文
posted @ 2024-06-14 00:03 笠大 阅读(12) 评论(0) 推荐(0)
摘要: 继续学习satoken //用户登录方法 @Override public String login(LoginDto loginDto) { // 先检验验证码 String codeRedis = redisTemplate.opsForValue().get(loginDto.getCodeK 阅读全文
posted @ 2024-06-14 00:02 笠大 阅读(48) 评论(0) 推荐(0)
摘要: 学习了使用sa-token 配置pom <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <spring-cloud.ver 阅读全文
posted @ 2024-06-14 00:02 笠大 阅读(25) 评论(0) 推荐(0)
摘要: 个人总结:大二学习与项目回顾 在大二这一年,我主要完成了SpringBoot和Vue项目,并学习了安卓开发内容。通过这一年的学习和实践,我参与了多个项目,包括共享益网站、安卓学习记录App和出差App。以下是我对这一年的总结和反思。 1. 回顾课程计划 第一周的计划与完成情况 在大二开学的第一周,我 阅读全文
posted @ 2024-06-13 23:11 笠大 阅读(23) 评论(0) 推荐(0)
摘要: import tkinter as tk from tkinter import ttk from pypinyin import lazy_pinyin # 省份、城市、地区数据 data = { "北京": { "北京市": ["东城区", "西城区", "朝阳区"], }, "上海": { " 阅读全文
posted @ 2024-06-07 10:27 笠大 阅读(20) 评论(0) 推荐(0)
摘要: 学了学python:写程序实现对特定英文文章(文本文件)的单词数和有效行数的统计,其中要求空行不计数; word_count = 0 line_count = 0 with open(filename, 'r') as file: for line in file: stripped_line = 阅读全文
posted @ 2024-06-07 10:20 笠大 阅读(16) 评论(0) 推荐(0)
摘要: 首先,根据目标函数,我们计算其梯度和海森矩阵: syms x1 x2; f = 100*(x2 - x1^2)^2 + (1 - x1)^2; grad_f = gradient(f, [x1, x2]); grad_f_fun = matlabFunction(grad_f); hes_f = h 阅读全文
posted @ 2024-06-05 10:05 笠大 阅读(72) 评论(0) 推荐(0)
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 33 下一页