springmvc shiro 多种方式登录(小程序openid登录) shiro多种方式登录 ApplicationContext.xml文件配置。自定义 ShiroUserOpenIdRealm。自定义UserOpenIDToken。使用openid登录。
mysql 空间查询 查询多边形和圆形区域内的点 圆形通过判断点到圆心的距离小于半径,适合数据量小的情况。点数量多的情况最好使用es或者MongoDB存储检索。在地图上画多边形或圆形区域,查询区域内的点。mybatis中存储点信息。mybatis中查询方式。...
vue3 打包 在springmvc中访问 修改vue.config.js文件 设置指定css/js/img/fonts等静态资源文件夹的打包生成路径。大屏页面需要在web系统登录后访问,所以将vue生成的项目打包后,放进springmvc中,进行路由控制。将生成的assets/screen下的文件拷贝到springmvc项目的同路径下。将index.html拷贝到springmvc的jsp路径下。修改ApplicationContext-mvc.xml文件。我的页面出现了乱码,修改web.xml文件。yarn build 命令打包后。......
java poi freemarker ftl 模板导出word 1、制作模板用doc文件另存为Word 2003 XML文档(试过docx不行)模板中内容替换 如将时间替换为后台设置的字段 start1 {start1}~start1 {end1}将图片替换为后台传回的图片base64值 找到preserve标签 将原有的图片base64内容删除替换为KaTeX parse error: Expected 'EOF', got '#' at position 24: …表替换,找到列表中内容行 用......
uniapp 音频播放 uniapp 音频播放<template> <view class="audio-view"> <view class="play-button-area"> <image class="icon-play" :src="playImage" @click="play"></image> </view> <view class="play-silder"> <view class="aud
leaflet地图初始化显示不全问题 leaflet地图初始化显示不全问题map = L.map('mapDetaill', { crs: crs2000, minZoom: 7, maxZoom: 18, zoomControl: false, attributionControl: false, editable: true, continuousWorld: true, worldCopyJump: false
vue v-html 内容中图片地址错误 移除 替换img 标签,加上onerror处理show_html.value=show_html.value.replace(/<img/ig,"<img οnerrοr='this.remove()'")
vue3 单选点击取消 <el-form-item label="资源分类" v-show="show == '3'"> <el-radio-group v-model="formZrzy.FLH"> <el-radio label="xxxx" @click.prevent="onRadioChange2('xxxx')">山</el-radio> </el-radio-group></el-form-item>functi.
vue 链接方式 query传参 参数在地址栏中显示 刷新不丢失 <router-link v-for="(menu,index) in currentMenuList" :key="index" :to="{ name: menu.linkName, query: menu.params }" > <li :class="{ active: show == index }">{{ menu.name }}</li> </ro