上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页
摘要: 参考博客: 单点登录参考博客: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 理舞 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 需要引入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 理舞 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 看到一个图,感觉很好,图来源于博客: https://blog.51cto.com/13718210/2130849 下图参考博客: https://www.pianshen.com/article/12891732046/ git简明指南: https://www.runoob.com/manua 阅读全文
posted @ 2021-03-09 09:05 理舞 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 一个通过http请求对elasticsearch进行数据查询或操作的项目 在之前的项目中,一直使用mybatis,习惯了使用sql语句进行查询和处理数据,当切换到elasticsearch数据源后,发现需要通过其对应的高级编程接口对数据进行操作和查询,而且返回结果一层一层的,光解析数据,都挺麻烦,故 阅读全文
posted @ 2021-01-19 15:18 理舞 阅读(811) 评论(0) 推荐(0) 编辑
摘要: // 跨域通信,供父类调用 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 理舞 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 先贴一个效果图,使用的geoserver版本2.18.0,需要对应版本插件netcdf插件【Extensions》Coverage Formats》NetCDF】,使用tomcat8进行发布geoserver,端口启用的是9999; 这里面的源码以及一些工具等,可以到我的百度盘里面进行查找: 链接: 阅读全文
posted @ 2020-11-13 15:59 理舞 阅读(995) 评论(0) 推荐(0) 编辑
摘要: netcdf sfc_pres_temp { dimensions: latitude = 6 ; //纬度轴 longitude = 12 ; //经度轴 variables: float latitude(latitude) ; //坐标变量,存储具体纬度 latitude:units = “d 阅读全文
posted @ 2020-11-09 10:03 理舞 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 参考博客: 墨卡托投影 https://blog.csdn.net/mygisforum/article/details/13295223 墨卡托投影推导 https://blog.csdn.net/YYMHQE123/article/details/105528573 阅读全文
posted @ 2020-11-06 09:18 理舞 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 满足条件: 一阶: 二阶: 三阶: 参考博客:https://www.jianshu.com/p/8f82db9556d2 阅读全文
posted @ 2020-11-04 17:00 理舞 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 使用如下代码,获得Canvas图像对应的data URI,也就是平常我们所说的base64地址 var dataUrl = document.getElementById("canvasId").toDataURL("image/png"); 然后将dataUrl作为参数,调用下面的方法就可以直接下 阅读全文
posted @ 2020-11-04 15:32 理舞 阅读(386) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页