会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
理舞
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
5
6
7
8
9
10
11
12
13
···
30
下一页
2021年3月11日
SSO单点登录与登出
摘要: 参考博客: 单点登录参考博客:https://blog.csdn.net/qq_33200676/article/details/82981742 这篇博客中的这个时序图超级清楚,也可以直接访问CAS官网:https://apereo.github.io/cas/4.2.x/protocol/CAS
阅读全文
posted @ 2021-03-11 09:33 理舞
阅读(177)
评论(0)
推荐(0)
2021年3月9日
jwt使用
摘要: 需要引入jwt依赖 <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>3.4.0</version> </dependency> 测试demo public static void
阅读全文
posted @ 2021-03-09 18:55 理舞
阅读(163)
评论(0)
推荐(0)
git概念理解
摘要: 看到一个图,感觉很好,图来源于博客: https://blog.51cto.com/13718210/2130849 下图参考博客: https://www.pianshen.com/article/12891732046/ git简明指南: https://www.runoob.com/manua
阅读全文
posted @ 2021-03-09 09:05 理舞
阅读(50)
评论(0)
推荐(0)
2021年1月19日
一个通过http请求对elasticsearch进行数据查询或操作的项目
摘要: 一个通过http请求对elasticsearch进行数据查询或操作的项目 在之前的项目中,一直使用mybatis,习惯了使用sql语句进行查询和处理数据,当切换到elasticsearch数据源后,发现需要通过其对应的高级编程接口对数据进行操作和查询,而且返回结果一层一层的,光解析数据,都挺麻烦,故
阅读全文
posted @ 2021-01-19 15:18 理舞
阅读(826)
评论(0)
推荐(0)
2020年12月22日
网站页面跨域调用
摘要: // 跨域通信,供父类调用 window.addEventListener("message",function(obj){ var data = obj.data; var action = data.action; var data = data.data; if(action=='showPo
阅读全文
posted @ 2020-12-22 15:58 理舞
阅读(165)
评论(0)
推荐(0)
2020年11月13日
geoserver的demo使用过程
摘要: 先贴一个效果图,使用的geoserver版本2.18.0,需要对应版本插件netcdf插件【Extensions》Coverage Formats》NetCDF】,使用tomcat8进行发布geoserver,端口启用的是9999; 这里面的源码以及一些工具等,可以到我的百度盘里面进行查找: 链接:
阅读全文
posted @ 2020-11-13 15:59 理舞
阅读(1189)
评论(0)
推荐(0)
2020年11月9日
NetCDF格式.nc
摘要: netcdf sfc_pres_temp { dimensions: latitude = 6 ; //纬度轴 longitude = 12 ; //经度轴 variables: float latitude(latitude) ; //坐标变量,存储具体纬度 latitude:units = “d
阅读全文
posted @ 2020-11-09 10:03 理舞
阅读(222)
评论(0)
推荐(0)
2020年11月6日
墨卡托投影
摘要: 参考博客: 墨卡托投影 https://blog.csdn.net/mygisforum/article/details/13295223 墨卡托投影推导 https://blog.csdn.net/YYMHQE123/article/details/105528573
阅读全文
posted @ 2020-11-06 09:18 理舞
阅读(196)
评论(0)
推荐(0)
2020年11月4日
贝塞尔曲线
摘要: 满足条件: 一阶: 二阶: 三阶: 参考博客:https://www.jianshu.com/p/8f82db9556d2
阅读全文
posted @ 2020-11-04 17:00 理舞
阅读(117)
评论(0)
推荐(0)
页面上下载canvas中的内容作为图片
摘要: 使用如下代码,获得Canvas图像对应的data URI,也就是平常我们所说的base64地址 var dataUrl = document.getElementById("canvasId").toDataURL("image/png"); 然后将dataUrl作为参数,调用下面的方法就可以直接下
阅读全文
posted @ 2020-11-04 15:32 理舞
阅读(421)
评论(0)
推荐(0)
上一页
1
···
5
6
7
8
9
10
11
12
13
···
30
下一页