会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
yvioo
“你从没有相信过谁吧,这就是你孤身一人的原因”
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
51
52
53
54
55
56
57
58
59
···
70
下一页
2020年5月24日
SpringBoot 整合Spring Security框架
摘要: SpringBoot 整合Spring Security + JWT 实现前后端分离项目的认证授权参考 :https://www.cnblogs.com/pxblog/p/16180791.html 引入maven依赖 <!-- 放入spring security依赖 --> <dependency
阅读全文
posted @ 2020-05-24 19:42 yvioo
阅读(366)
评论(0)
推荐(0)
2020年5月23日
SpringBoot整合Apache Shiro
摘要: Subject 用户主体 (把操作交给SecurityManager)SecurityManager 安全管理器 (关联Realm)Realm Shiro连接数据的桥梁 引入maven依赖 <dependency> <groupId>org.apache.shiro</groupId> <artif
阅读全文
posted @ 2020-05-23 18:00 yvioo
阅读(600)
评论(0)
推荐(0)
SpringBoot整合Swagger框架 ,并设置接口请求头token默认值
摘要: 引入maven依赖 <!-- swagger2--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </depende
阅读全文
posted @ 2020-05-23 15:51 yvioo
阅读(4265)
评论(0)
推荐(0)
2020年5月22日
Oracle根据约束条件名称查找对应的数据
摘要: select * from dba_constraints where constraint_name = 'SYS_C0082752'
阅读全文
posted @ 2020-05-22 13:44 yvioo
阅读(717)
评论(0)
推荐(0)
2020年5月19日
JAVA使用经纬度通过腾讯地图API获取详细地址
摘要: 官方文档:https://lbs.qq.com/service/webService/webServiceGuide/webServiceGcoder package com.weixin.map; import net.sf.json.JSONObject; import org.apache.c
阅读全文
posted @ 2020-05-19 14:55 yvioo
阅读(4616)
评论(0)
推荐(0)
2020年5月18日
table中tr、td标签设置只读,不能修改(readonly属性)
摘要: 在不能修改的位置加上代码:onselectstart="return false" οnselect="document.selection.empty()" <td onselectstart="return false" οnselect="document.selection.empty()"
阅读全文
posted @ 2020-05-18 11:55 yvioo
阅读(5849)
评论(0)
推荐(0)
2020年5月15日
JS监控浏览器窗口是否活动,最小化操作
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>监控窗口是否活动</title> </head> <body> <script> window.addEventListener('blur', ()=>{ d
阅读全文
posted @ 2020-05-15 17:14 yvioo
阅读(1845)
评论(0)
推荐(0)
2020年5月13日
JAVA调用微信接口实现页面分享功能(分享到朋友圈显示图片,分享给朋友)
摘要: 钉钉提供的内网穿透之HTTP穿透:https://www.cnblogs.com/pxblog/p/13862376.html 网页分享到微信中如何显示标题图,如果自定义标题图,描述,显示效果如下 官网接口地址;https://developers.weixin.qq.com/doc/offiacc
阅读全文
posted @ 2020-05-13 11:45 yvioo
阅读(6510)
评论(6)
推荐(1)
2020年5月12日
MySQL数据导入报错:Got a packet bigger than‘max_allowed_packet’bytes的问题
摘要: 修改my.cnf,需重启mysql。 在 [MySQLd] 部分添加一句(如果存在,调整其值就可以): max_allowed_packet=512M 查找MySql的配置文件my.cnf所在路径参考:https://www.cnblogs.com/pxblog/p/13701211.html
阅读全文
posted @ 2020-05-12 11:52 yvioo
阅读(3467)
评论(0)
推荐(0)
优化MySQL占用内存过高
摘要: 打开mysql 的配置文件 my.cnf 查找方式:https://www.cnblogs.com/pxblog/p/13701211.html 在[mysqld]后面修改或添加 # The maximum amount of concurrent sessions the MySQL server
阅读全文
posted @ 2020-05-12 11:30 yvioo
阅读(963)
评论(0)
推荐(0)
上一页
1
···
51
52
53
54
55
56
57
58
59
···
70
下一页
公告