上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 50 下一页
摘要: 使用SpringBoot项目开发上传文件的代码时,如果想访问已上传的文件,但处于测试阶段,而不想配置Nginx服务并启动这么繁琐,那么配置以下代码即可 @Override public void addResourceHandlers(ResourceHandlerRegistry registry 阅读全文
posted @ 2021-01-19 15:33 星小梦 阅读(226) 评论(0) 推荐(0)
摘要: 动画理解LRU算法:https://www.pianshen.com/article/8150146075/ Java实现LRU算法:https://www.pianshen.com/article/8150146075/ Java实现LRU算法,创建类似于队列的结构,使用Map保存各个队列中的节点 阅读全文
posted @ 2021-01-17 12:49 星小梦 阅读(272) 评论(0) 推荐(0)
摘要: def get_resource_path(path: str) -> str: """\ 获取Resources目录里的资源 :param path: :return: """ return os.path.abspath(os.path.normpath(f"resources/{path}") 阅读全文
posted @ 2021-01-12 13:55 星小梦 阅读(635) 评论(0) 推荐(0)
摘要: Flex:https://www.html.cn/archives/8629 Grid:https://www.html.cn/archives/8510/ http://www.ruanyifeng.com/blog/2019/03/grid-layout-tutorial.html 游戏编程:h 阅读全文
posted @ 2021-01-06 22:14 星小梦 阅读(94) 评论(0) 推荐(0)
摘要: https://css-tricks.com/line-clampin/ 框架Clamp:https://github.com/josephschmitt/Clamp.js 阅读全文
posted @ 2021-01-03 06:20 星小梦 阅读(109) 评论(0) 推荐(0)
摘要: IDM:http://www.internetdownloadmanager.com/ NDM(免费):http://www.neatdownloadmanager.com/index.php/en/ IDM破解地址:https://startcrack.com/idm-crack-patch/ 阅读全文
posted @ 2020-12-28 15:09 星小梦 阅读(355) 评论(0) 推荐(0)
摘要: 有关FiddlerEverywhere通过邮件激活账号时,激活链接提示已失效问题;这个链接有进行一个讨论(https://www.telerik.com/forums/unable-to-activate-fiddler-everywhere-account) ,不过最终的解决方案就是 你注册的Fi 阅读全文
posted @ 2020-12-22 10:17 星小梦 阅读(4581) 评论(0) 推荐(0)
摘要: 如果使用vue-router在当前页面刷新,则会中断此操作,没有反应,错误信息是: Error: Avoided redundant navigation to current location: "/". at createRouterError (vue-router.esm.js?8c4f:2 阅读全文
posted @ 2020-12-15 20:22 星小梦 阅读(482) 评论(0) 推荐(0)
摘要: 环境 前端 vue + axios 后端 springboot 问题与方案 这里可以看文献的==《跨域资源共享》==;请求分为简单请求和复杂请求,简单请求直接进行正式请求,而复杂请求则会在正式请求之前发送请求方式为OPTIONS的预检请求。 跨域解决方案(针对复杂请求) 第一种 原因: 缺少跨域的H 阅读全文
posted @ 2020-12-08 00:26 星小梦 阅读(487) 评论(0) 推荐(0)
摘要: import java.util.ArrayList; import java.util.List; import java.util.function.Consumer; import java.util.function.Supplier; public class Builder<T> { p 阅读全文
posted @ 2020-11-04 20:06 星小梦 阅读(298) 评论(0) 推荐(0)
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 50 下一页