上一页 1 2 3 4 5 6 7 8 9 ··· 44 下一页
摘要: https://www.python.org/downloads/ 在VSCode中配置Python环境需要进行以下步骤: 安装Python解释器:在使用Python开发之前,需要先安装Python解释器。可以从Python官网(https://www.python.org/downloads/)下 阅读全文
posted @ 2023-02-27 14:35 三瑞 阅读(4227) 评论(0) 推荐(0)
摘要: Springboot 中 主模块引用其他模块的Controller url路径总是不生效 其他无关影响:主要有spring security 有权限过滤器影响、还有token的影响。 找问题方法: 使用了对比两个模块不同的Controller 接口 发现只多两行日志: 2023-02-26 09:3 阅读全文
posted @ 2023-02-26 10:30 三瑞 阅读(330) 评论(0) 推荐(0)
摘要: 1、将python打包成exe的方式 python 上常见的打包方式目是通过 pyinstaller 来实现的。 pip install pyinstaller或者用镜像下载: # 清华源pip install pyinstaller -i https://pypi.tuna.tsinghua.ed 阅读全文
posted @ 2023-02-11 15:04 三瑞 阅读(200) 评论(0) 推荐(0)
摘要: Service ‘MongoDB Server (MongoDB)’ (MongoDB) failed tostart. Verify that you have sufficient privileges to start system services. 服务“MongoDB服务器(MongoD 阅读全文
posted @ 2023-02-09 13:29 三瑞 阅读(85) 评论(0) 推荐(0)
摘要: nginx 子路径 网站图片或js/css 路径缺失 替换 location /test { rewrite ^/test/(.*)$ /$1 break; proxy_pass http://localhost:8080; sub_filter_types *; sub_filter '/Cont 阅读全文
posted @ 2023-01-31 15:00 三瑞 阅读(397) 评论(0) 推荐(0)
摘要: Sql Server 函数中执行的程序集但用户的权限不够,后DBA使用sa 账号设置了就对了 网上找到的解决方法: 这数据库是从其他数据库还原到本地数据库的,不少网友说在还原数据库之后,可以将数据库的OWNER设置成SA就可以解决 exec sp_changedbowner 'sa' 从报错信息可以 阅读全文
posted @ 2023-01-16 10:02 三瑞 阅读(2550) 评论(0) 推荐(0)
摘要: safe_360.cs using System; using System.Collections.Generic; using System.Text.RegularExpressions; using System.Web; /// <summary> /// safe_360 的摘要说明 / 阅读全文
posted @ 2022-12-07 13:51 三瑞 阅读(168) 评论(0) 推荐(0)
摘要: 下载 Download - The Apache HTTP Server Project Files for Microsoft Windows ApacheHaus SHA1 Checksum 选项包括: -n个请求要执行的请求数 -c并发一次发出的多个请求数 -t时间限制用于基准测试的最长秒数 阅读全文
posted @ 2022-11-28 14:49 三瑞 阅读(32) 评论(0) 推荐(0)
摘要: SQL SERVER 中 sys.dm_tran_locks 消息 297,级别 16,状态 1,第 6 行 用户没有执行此操作的权限。 --1.查询数据库阻塞与死锁的进程清单(可分析清单详情,看看死锁id对应的执行sql,分析sql语句,杀掉select语句的进程) SELECT 'kill', 阅读全文
posted @ 2022-11-04 14:46 三瑞 阅读(705) 评论(0) 推荐(0)
摘要: 1、java -jar demo.jar说明:用这种方法启动后,不能继续执行其它命令了,如果想要继续执行其它命令,就都打断,打断一般用ctrl+c。 2、java -jar demo.jar &第2种在第1种方式的基础上在命令的结尾增加了&,&表达的意思是在后台运行。这种方式可以避免打断后程序停止的 阅读全文
posted @ 2022-10-27 11:37 三瑞 阅读(228) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 44 下一页