摘要: import { Vector as SourceVec } from 'ol/source' import { Feature } from 'ol' import { Point } from 'ol/geom' import { Style,Icon} from 'ol/style' impo 阅读全文
posted @ 2020-08-29 18:18 许言琪 阅读(3277) 评论(0) 推荐(0) 编辑
摘要: 一、添加WebSocketConfig配置类 import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.spr 阅读全文
posted @ 2020-08-29 18:16 许言琪 阅读(2792) 评论(3) 推荐(0) 编辑
摘要: 浏览器默认内核的指定只需在head标签中添加一行代码即可 若页面需默认用极速核,增加标签: <meta name="renderer" content="webkit"> 若页面需默认用ie兼容内核,增加标签: <meta name="renderer" content="ie-comp"> 若页面 阅读全文
posted @ 2020-08-29 18:07 许言琪 阅读(202) 评论(0) 推荐(0) 编辑
摘要: import { Vector as SourceVec,Cluster } from 'ol/source' import { Feature } from 'ol' import { Point } from 'ol/geom' import { Style,Icon,Stroke,Fill,T 阅读全文
posted @ 2020-08-29 18:02 许言琪 阅读(2063) 评论(0) 推荐(1) 编辑
摘要: #问题: 一个ListWidget 继承与 StatefulWidget 当第一次加载时list为[],第二次list有数据时 ListWidget里面的list还是为[],而在调用方是有数据的。 Widget ListWidget extends StatefulWidget { @overrid 阅读全文
posted @ 2020-08-29 17:54 许言琪 阅读(291) 评论(0) 推荐(0) 编辑
摘要: Spring Security 学习 1. 初识Spring Security Spring Security 是Spring提供的一套安全机制框架,对用户访问资源做登录认证。 2. 搭建简单Spring Security 创建一个基于SpringBoot框架的Web项目。 2.1 引入Maven 阅读全文
posted @ 2020-08-29 12:11 许言琪 阅读(2791) 评论(0) 推荐(0) 编辑
摘要: Spring Security 学习 1. 采用formLogin认证方式 1.1 创建角色 @Override protected void configure(HttpSecurity http) throws Exception { /* * 采用formLogin认证方式 * */ http 阅读全文
posted @ 2020-08-29 11:47 许言琪 阅读(1805) 评论(0) 推荐(0) 编辑