- 博客(20)
- 收藏
- 关注
原创 关于在react的useEffect使用axios请求出现两次的问题
react的hooks中的useEffect遇到执行两次的情况的解决方案
2023-05-23 14:30:31 1836 2
原创 SpringBoot集成javafx在TableView使用Pagination分页及自定义分页,表格行编辑及弹窗编辑,全选/反选,删除与批量删除
springboot管理javafx,实现TableView的分页查询,编辑以及删除(批量删除),查询使用mybatis,分页使用PageHelper,这里只是为了结合分页插件以及自定义分页查询使用(可自行更换为其他orm组件,比如mybatis-plus,jpa等方式),该demo仅仅只是个人学习使用,如需参考还请自行验证测试,如有建议或发现错误,欢迎转载留言及指正
2022-05-26 09:58:26 3206 9
原创 vue3+ts+vite2+element-plus国际化(需要改进)
vue3 element-plus 使用vue-i18n实现国际化(vite版本2.8.0,vue版本3.2.25,vue-i18n版本9.1.10,element-plus(版本2.1.8)组件需要F5刷新页面才能进行切换语言,暂时没找到解决方式,后续再改进了)
2022-05-22 13:00:00 2456 1
原创 springboot使用juit测试出现Application run failed Error creating bean with name ‘webSocketConfig‘
springboot使用junit测试存在websocket配置问题
2022-03-16 11:20:04 1167
原创 springboot2中jackson设置的LocalDateTime全局序列化不生效的问题存在情况
比如,你可能设置了如下的配置,获取其他的方式 @Configurationpublic class WebMvcConfig { @Bean public Converter<String, LocalDate> localDateConverter() { return new Converter<String, LocalDate>() { @Override public LocalDat
2021-05-04 13:32:34 3510 2
原创 ResourceServerConfigurerAdapter与WebSecurityConfigurerAdapter同时使用只有ResourceServerConfigurerAdapter生效
1.此处使用的ResourceServerConfigurerAdapter是spring-security-oauth2中的,WebSecurityConfigurerAdapter是spring-security-config中的;2.同时使用上面的两种配置的时候,如果两者配种存在重写相同的方法时,后者的会出现配置不生效的问题,比如重写了configure这个方法(参数final不影响)3.造成这个问题的主要原因其实就是因为两者的默认自动注册的@Order的优先级不同(具体情况请自行参考源码
2021-03-05 14:05:46 6447
原创 postman中springboot上传文件Missing initial multi part boundary
如果在postman中设置了Context-type为multipart/form-data以及file设置,如下图:而我的调用的上传方法仅仅只是用了@RequestMapping("/xxxx"),并且使用MutipartFile,如下图:的时候,可能遇到的错误信息如下(报错信息看加粗与下划线部分就行了)org.springframework.web.multipart.MultipartException: Failed to parse multipart se...
2020-11-14 17:40:59 5228
原创 springboot2.x中的java mail使用相关模板,发送带静态资源与附件邮件到163邮箱
1.163邮箱配置省略部分其他getter与setter方法2.发送邮件的interface3.发送邮件的接口实现类import com.springcloud.my.config.MailFor163Config;import com.springcloud.my.service.MailSendTo163Service;import com.springcloud.my.utils.ContentTypeEnum;import com.springcloud.my.uti
2020-06-26 06:45:36 1692
原创 springboot2.x分别使用freemarker,thymeleaf,velocity发送邮件(包括带附件的)到qq邮箱
1.首先,需要在引入mail,freemarker,thymeleaf,velocity等相关的jar包。 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> <version>2.2.
2020-06-25 09:29:58 1616 2
原创 常见的文件对应的contType的java枚举类
public enum ContentTypeEnum { LOAD(".load", "text/html"), V_123(".123", "application/vnd.lotus-1-2-3"), I_3DS(".3ds", "image/x-3ds"), V_3G2(".3g2", "video/3gpp"), V_3GA(".3ga", "video/3gpp"), F_3GP(".3gp", "video/3gpp"), V_3GP.
2020-06-23 20:58:44 3331
原创 element dialog使用vue-cropper存在上传成功后在不刷新当前页面或者整个页面再次打开无法裁剪的问题
1.该问题在CSDN上已经有人指出来了https://blog.csdn.net/qq_39234840/article/details/92806946,但是依然没有说出解决问题的关键。2.在若依的vue版本(https://gitee.com/y_project/RuoYi-Vue)中使用了vue-cropper的地方也依然存在同样的问题,在issues中我也对提了问题(https://gitee.com/y_project/RuoYi-Vue/issues/I1L81Z),但是作者还没解决这个小b
2020-06-21 16:28:36 1315 5
原创 jQuery或者js给当前页面设置标题
jQuery方式如下:$(document).attr("title", "aaa");$('title').html('aaa');$('title').text('aaa');原生js方式document.title="aaa";
2020-06-12 23:34:52 1488
原创 java8的线程安全时间格式化类
// TODO 使用java8的线程安全时间格式化类LocalDate localDate = LocalDate.now();int month = localDate.getMonthValue();String currentDate = localDate.format(DateTimeFormatter.ofPattern("yyyy-MM-dd"));String monthStr = month < 10 ? "0" + month : String.valueO....
2020-06-12 23:25:14 1129
原创 hibernate使用原生sql查询数据条数出现类型转换异常
使用hibernate的getSession().createSQLQuery(sql)查询数据条数的时候,需要对返回值类型进行转换,比如转换为BigInteger,这样就能正常返回条数了。String sql = "SELECT COUNT(*) FROM xxxx WHERE id=:id AND FREE_TRIAL_ID =:xxxId"; SQLQuery sqlQuery = this.getSession().createSQLQuery(sql); ...
2020-06-12 23:22:17 609
原创 vue中使用less出现的问题(style中使用less设置 scoped 遇到的坑)
最近在学vue的时候碰到的,在项目中的使用了<style lang="less" scoped>,可以正常编译却不能启动成功,具体报错信息如下:首先需要安装必要的插件sass-resources-loader,less-loader等,网上说这个出现这个错误的原因是因为less与webpack版本不一致所致。解决的方法如下。1.修改项目根目录build中的u...
2020-04-29 17:23:39 14234 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人