会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
与f
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
8
9
···
122
下一页
2024年7月25日
微信小程序本地读取xls文件
摘要: 微信小程序本地读取xls文件: 其中用到一个js-xlsx库:https://docs.sheetjs.com/docs/demos/frontend/vue/ , 主要思路是 1. 通过 wx.chooseMessageFile 上传文件,获得一个临时地址 tempFilePath 。 (这个地址
阅读全文
posted @ 2024-07-25 10:14 与f
阅读(1743)
评论(0)
推荐(0)
2024年6月25日
js 中的 base64 转码 btoa/atob
摘要: 1 场景 有时,文本里面包含一些不可打印的符号,比如 ASCII 码0到31的符号都无法打印出来,这时可以使用 Base64 编码,将它们转成可以打印的字符。另一个场景是,有时需要以文本格式传递二进制数据,那么也可以使用 Base64 编码。所谓 Base64 就是一种编码方法,可以将任意值转成 0
阅读全文
posted @ 2024-06-25 14:54 与f
阅读(820)
评论(0)
推荐(0)
wpf自定义组件
摘要: wpf的学习,xaml写原生的控件,设置样式,或把样式抽离出来放到全局app.xaml,这些百度学习。 这里着重讲下,对于一些控件没有的样式怎么自定义一个组件,比如下面讲解自定义一个button实现圆角功能 (目标,给原有button添加新属性,并且要可以在标签绑定此值)。 技术细节,button里
阅读全文
posted @ 2024-06-25 13:36 与f
阅读(68)
评论(0)
推荐(0)
2024年6月16日
mybatis plus 启用 mybatis插件
摘要: mybatis plus 启用 mybatis插件 在使用MyBatis-Plus时,要启用MyBatis插件,你需要遵循以下步骤: 实现自定义插件:创建一个类,实现Interceptor接口。 注册插件:在MyBatis配置文件中或通过Java配置方式注册插件。 下面是一个简单的自定义MyBati
阅读全文
posted @ 2024-06-16 12:25 与f
阅读(194)
评论(0)
推荐(0)
Mybatis源码系列文章
摘要: Mybatis源码系列文章 插件机制:想写一个打印sql的插件 https://blog.csdn.net/qq_35512802/article/details/128163699 https://www.bilibili.com/video/BV1MS411N7mn 转: https://blo
阅读全文
posted @ 2024-06-16 10:35 与f
阅读(25)
评论(0)
推荐(0)
2024年6月12日
springboot3项目的搭建四.3(security登录认证配置)
摘要: security的jwt验证: 总体来说,我们加入依赖项,security就已经开始生效了,但是使用的默认的UserDetails和UserDetailsService, 一 、我们只要继承UserDetailsService,在数据库中查询用户和权限列表,封装成UserDetails的实现类,返回
阅读全文
posted @ 2024-06-12 16:47 与f
阅读(1308)
评论(2)
推荐(0)
2024年6月6日
spring mvc报错:No more pattern data allowed after {*...} or ** pattern element
摘要: 原因:错误是路径通配问题,查找发现是spring升级到5.3之后路径通配发生了变化,官方给出的解释是“In Spring MVC, the path was previously analyzed by AntPathMatcher, but it was changed to use PathPa
阅读全文
posted @ 2024-06-06 13:45 与f
阅读(1947)
评论(0)
推荐(0)
2024年5月31日
springboot3项目的搭建四.2(security登录认证配置)
摘要: SpringBoot3+SpringSecurity整合 Security导包: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId
阅读全文
posted @ 2024-05-31 21:34 与f
阅读(271)
评论(0)
推荐(0)
springboot3项目的搭建四.1(security登录认证配置)
摘要: SpringBoot3 整合SpringSecurity Maven <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3
阅读全文
posted @ 2024-05-31 21:29 与f
阅读(452)
评论(0)
推荐(0)
springboot3项目的搭建四(security登录认证配置)
摘要: springboot3项目的搭建四(security登录认证配置) <!--security安全配置--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-securit
阅读全文
posted @ 2024-05-31 21:24 与f
阅读(2039)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
···
122
下一页
公告