码迷,mamicode.com
首页 >  
搜索关键字:spring data mongodb    ( 115491个结果
Spring Mvc整合Swagger-UI实现在线API文档
Swagger-UI简介 Swagger-UI Swagger-UI是HTML, Javascript, CSS的一个集合,可以动态地根据注解生成在线API文档。 常用注解 @Api:用于修饰Controller类,生成Controller相关文档信息 @ApiOperation:用于修饰Contr ...
分类:编程语言   时间:2020-11-16 13:40:39    阅读次数:13
Required String parameter ‘xxxx‘ is not present
ajax请求spring后台出现RequiredStringparameter‘id’isnotpresent异常,1.如果前端传入的是json数据那么后端使用@RequestBodyHashMap<String,String>map进行接收,然后再通过map.get(“id”)获取对应的数据2.如果前端传入的是正常表单数据,那么后端使用@RequestParam("id&q
分类:其他好文   时间:2020-11-16 13:37:53    阅读次数:8
微信小程序开发实战(云开发)--资产管理工具
添加首页 menu页面 ###截图展示 menu.js源码 // pages/menu/menu.js Page({ /** * 页面的初始数据 */ data: { }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, /** * 生 ...
分类:微信   时间:2020-11-16 13:34:02    阅读次数:29
【Mysql】 Mysql 统计数据库大小及信息
使用以下命令查询指定数据库容量大小: where table_schema='mysql' #mysql是数据库名称,将mysql修改自己想要查询的数据库即可。 select table_schema as '数据库', sum(table_rows) as '记录数', sum(truncate( ...
分类:数据库   时间:2020-11-16 13:27:08    阅读次数:15
Dashboard on power apps
Create and configure model-driven app interactive experience dashboards Effective Nov 2020, some terminology in Common Data Service has been updated. ...
分类:移动开发   时间:2020-11-16 13:14:10    阅读次数:14
服务器linux centos 7.4 搭建ftp服务器
此操作是在腾讯云服务器linux centos 7.4 完成搭建ftp服务器 vsftpd 的; 安装 vsftpd $ yum install vsftpd -y 启动 $ service vsftpd start && systemctl restart vsftpd.service 关闭 se ...
分类:系统相关   时间:2020-11-16 12:59:40    阅读次数:17
Spring Security 实战干货:OAuth2第三方授权初体验
1. 前言 Spring Security实战干货系列 现在很多项目都有第三方登录或者第三方授权的需求,而最成熟的方案就是OAuth2.0授权协议。Spring Security也整合了OAuth2.0,在目前最新的Spring Security 5中整合了OAuth2.0的客户端,我们可以很方便的 ...
分类:编程语言   时间:2020-11-16 12:57:37    阅读次数:15
事件 应用于授权子窗体传递验证数据给主窗体
一、事件定义类,即子窗体 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; ...
分类:Windows程序   时间:2020-11-13 13:16:37    阅读次数:33
golang mongodb 驱动二次封装
mongodb 官方的go驱动包 go.mongodb.org/mongo-driver 使用起来比较繁琐,最近对其进行了二次封装 github地址:https://github.com/w3liu/go-common/tree/master/store/mongo测试用例如下: func Test ...
分类:数据库   时间:2020-11-13 13:16:09    阅读次数:40
Springboot整合JDBC,MyBatis
一. Springboot整合JDBC 通过IDEA的Spring Initializr新建project或module,选择jdbc和mysql。 项目就初始化好了 配置pom.xml <!--jdbc启动器--> <dependency> <groupId>org.springframework ...
分类:数据库   时间:2020-11-13 13:13:52    阅读次数:28
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!